12 lines
316 B
C#
12 lines
316 B
C#
|
using Filtration.ObjectModel.Enums;
|
|||
|
|
|||
|
namespace Filtration.ThemeEditor.ViewModels
|
|||
|
{
|
|||
|
public class IconThemeComponentViewModel : ThemeComponentViewModel
|
|||
|
{
|
|||
|
public IconSize IconSize { get; set; }
|
|||
|
public IconColor IconColor { get; set; }
|
|||
|
public IconShape IconShape { get; set; }
|
|||
|
}
|
|||
|
}
|