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