namespace zero.Core.Entities
{
///
/// Define a backoffice icon set
///
public class IconSet
{
///
/// The alias
///
public string Alias { get; set; }
///
/// Name of the icon set
///
public string Name { get; set; }
///
/// Prefix for addressing symbols (by default the alias)
///
public string Prefix { get; set; }
///
/// Path to the SVG sprite
///
public string SpritePath { get; set; }
}
}