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