Files
mixtape/unjo.Core/Entities/Sections/IChildSection.cs
T
2020-03-22 14:18:34 +01:00

19 lines
482 B
C#

namespace unjo.Core.Entities.Sections
{
/// <summary>
/// A child section is a sub-navigation item of a section
/// </summary>
public interface IChildSection
{
/// <summary>
/// The section alias which acts as the url slug for navigation
/// </summary>
public string Alias { get; set; }
/// <summary>
/// The name of the section (either a string or a translation key with @ prefix)
/// </summary>
public string Name { get; set; }
}
}