...
Digizuite.Episerver.Models.Media.Image
Note, Small, Medium and LargeThumbnail has been removed. Out of the box it will contain Preview and Thumbnail. If you need you own custom formats, then you have to extend the class. In this example we add the small quality. DFE 2.0.0 - 2 Modelling Asset Content TypesCode Block language c# [ContentType(GUID = "0af71ce8-1e4b-499b-bf24-24e7fce44121")] [DigizuiteType(AssetTypeIds = new[] {GlobalConstants.AssetTypes.Image})] public class ExtendedDigiImage : Image { [DigizuiteMediaFormat("imageSmall", "3C95F58F-5DD7-4AFB-B1C8-48E05901CE6D")] public virtual Blob Small { get; set; } }
...