...
To make it even easier to use the values from the DAM Center in custom property drop down lists - for example in a block to hold a dynamic gallery, the integration also provides SelectionFactories for AssetType, Crops and MediaFormats SelectionFactory for folders in the Digizuite.Episerver.Helpers namespace, ready to use in attributes on properties like this:
[
SelectOneSelectMany(SelectionFactoryType = typeof(
CropSelectionFactoryFoldersSelectionFactory))]
public virtual string
CropName Folders { get; set; }
See a full example further down!
...