mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
12 lines
299 B
C#
12 lines
299 B
C#
using System.Windows.Media;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class BootstrapperIconEntry
|
|
{
|
|
public BootstrapperIcon IconType { get; set; }
|
|
public string Name => IconType.ToString();
|
|
public ImageSource ImageSource => IconType.GetIcon().GetImageSource();
|
|
}
|
|
}
|