namespace zero.Backoffice.Configuration;
///
/// Define a backoffice icon set
///
public class BackofficeIconSet
{
///
/// The alias for reference
///
public string Alias { get; set; }
///
/// Name of the icon set
///
public string Name { get; set; }
///
/// Optional symbol identifier prefix (by default the alias is used)
///
public string Prefix { get; set; }
///
/// Path to the SVG sprite containing addressable symbols
///
public string SpritePath { get; set; }
}