bloxstrap/Bloxstrap/Models/BootstrapperIconEntry.cs
pizzaboxer cc4c380c10
System for better management of enum names
eradicates all those redundant translations
2024-07-04 09:44:23 +04:00

11 lines
248 B
C#

using System.Windows.Media;
namespace Bloxstrap.Models
{
public class BootstrapperIconEntry
{
public BootstrapperIcon IconType { get; set; }
public ImageSource ImageSource => IconType.GetIcon().GetImageSource();
}
}