28 lines
643 B
C#
28 lines
643 B
C#
using System.Collections.Generic;
|
|
using zero.Core;
|
|
using zero.Core.Entities;
|
|
|
|
namespace zero.Web.Sections
|
|
{
|
|
/// <summary>
|
|
/// Media items (images, videos, documents) grouped in folders
|
|
/// </summary>
|
|
public class MediaSection : ISection, IZeroInternal
|
|
{
|
|
/// <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>();
|
|
}
|
|
}
|