Files
mixtape/zero.Web/Sections/MediaSection.cs
T

28 lines
643 B
C#
Raw Normal View History

2020-03-22 14:18:34 +01:00
using System.Collections.Generic;
2020-03-24 23:09:29 +01:00
using zero.Core;
using zero.Core.Entities;
2020-03-22 14:18:34 +01:00
2020-03-24 23:09:29 +01:00
namespace zero.Web.Sections
2020-03-22 14:18:34 +01:00
{
/// <summary>
/// Media items (images, videos, documents) grouped in folders
/// </summary>
public class MediaSection : ISection, IZeroInternal
2020-03-22 14:18:34 +01:00
{
/// <inheritdoc />
public string Alias => Constants.Sections.Media;
/// <inheritdoc />
2020-04-06 13:24:46 +02:00
public string Name => "@sections.item.media";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
public string Icon => "fth-image";
2020-04-05 00:39:12 +02:00
/// <inheritdoc />
public string Color => "#d82853";
2020-03-22 14:18:34 +01:00
/// <inheritdoc />
2020-04-05 01:19:42 +02:00
public IList<IChildSection> Children => new List<IChildSection>();
2020-03-22 14:18:34 +01:00
}
}