Files
mixtape/zero.Backoffice/UIComposition/Sections/IChildBackofficeSection.cs
T

17 lines
453 B
C#
Raw Normal View History

namespace zero.Backoffice.UIComposition;
2021-11-22 14:29:22 +01:00
/// <summary>
/// A child section is a sub-navigation item of a section
/// </summary>
2021-11-23 11:35:01 +01:00
public interface IChildBackofficeSection
2021-11-22 14:29:22 +01:00
{
/// <summary>
/// The section alias which acts as the url slug for navigation
/// </summary>
public string Alias { get; }
/// <summary>
/// The name of the section (either a string or a translation key with @ prefix)
/// </summary>
public string Name { get; }
}