namespace zero.Backoffice.Models; /// /// The modifier displays a small icon (with hover text) next to the main item icon /// public class TreeItemModifier { /// /// Name of the modifier /// public string Name { get; set; } /// /// Icon to display /// public string Icon { get; set; } public TreeItemModifier() { } public TreeItemModifier(string name, string icon) { Name = name; Icon = icon; } }