namespace zero.Backoffice.UIComposition;
///
/// Defines an area in the settings section
///
public interface ISettingsArea
{
///
/// Alias which used for the URL part
///
string Alias { get; }
///
/// Name of the settings area
///
string Name { get; }
///
/// Icon displayed next to the area name
///
string Icon { get; }
///
/// Further describe the area
///
string Description { get; }
///
/// Set a custom URL for this settings area link
///
string CustomUrl { get; set; }
}