Files
mixtape/zero.Core/Entities/Sections/IChildSection.cs
T

19 lines
463 B
C#
Raw Normal View History

2020-03-24 23:09:29 +01:00
namespace zero.Core.Entities
2020-03-22 14:18:34 +01:00
{
/// <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>
2020-04-05 01:19:42 +02:00
public string Alias { get; }
2020-03-22 14:18:34 +01:00
/// <summary>
/// The name of the section (either a string or a translation key with @ prefix)
/// </summary>
2020-04-05 01:19:42 +02:00
public string Name { get; }
2020-03-22 14:18:34 +01:00
}
}