22 lines
530 B
C#
22 lines
530 B
C#
namespace zero.Backoffice.Sections;
|
|
|
|
/// <summary>
|
|
/// Media items (images, videos, documents) grouped in folders
|
|
/// </summary>
|
|
public class MediaSection : IInternalSection
|
|
{
|
|
/// <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";
|
|
|
|
/// <inheritdoc />
|
|
public IList<IChildSection> Children => new List<IChildSection>();
|
|
} |