25 lines
515 B
C#
25 lines
515 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using unjo.Core;
|
||
|
|
using unjo.Core.Entities.Sections;
|
||
|
|
|
||
|
|
namespace unjo.Web.Sections
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Global list entities
|
||
|
|
/// </summary>
|
||
|
|
public class ListsSection : ISection
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public string Alias => Constants.Sections.Lists;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
public string Name => "@ui_sections_lists";
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
public string Icon => "fth-layers";
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
public IList<IChildSection> Children => null;
|
||
|
|
}
|
||
|
|
}
|