namespace zero.Backoffice.UIComposition; /// /// Creates a new settings group in the backoffice application settings section /// public interface ISettingsGroup { /// /// The name of the group (either a string or a translation key with @ prefix) /// string Name { get; set; } /// /// Areas/items within the group /// List Areas { get; set; } /// /// Add a new area to the group /// void Add(string alias, string name, string description = null, string icon = null, string customUrl = null); }