2021-11-23 11:56:42 +01:00
|
|
|
namespace zero.Backoffice.UIComposition;
|
2021-11-22 14:29:22 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Media items (images, videos, documents) grouped in folders
|
|
|
|
|
/// </summary>
|
2021-11-23 11:35:01 +01:00
|
|
|
public class MediaSection : IInternalBackofficeSection
|
2021-11-22 14:29:22 +01:00
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Alias => Constants.Sections.Media;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Name => "@sections.item.media";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Icon => "fth-image";
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string Color => "#d82853";
|
|
|
|
|
|
2021-12-29 01:25:35 +01:00
|
|
|
/// <inheritdoc />
|
|
|
|
|
public int Sort => 300;
|
|
|
|
|
|
2021-11-22 14:29:22 +01:00
|
|
|
/// <inheritdoc />
|
2021-11-23 11:35:01 +01:00
|
|
|
public IList<IChildBackofficeSection> Children => new List<IChildBackofficeSection>();
|
2021-11-22 14:29:22 +01:00
|
|
|
}
|