namespace zero.Backoffice.UIComposition;
///
/// A child section is a sub-navigation item of a section
///
public interface IChildBackofficeSection
{
///
/// The section alias which acts as the url slug for navigation
///
public string Alias { get; }
///
/// The name of the section (either a string or a translation key with @ prefix)
///
public string Name { get; }
}