namespace zero.Core.Entities { /// /// A child section is a sub-navigation item of a section /// public interface IChildSection { /// /// 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; } } }