mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
11 lines
248 B
C#
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();
|
|
}
|
|
}
|