Added untracked files
This commit is contained in:
19
Filtration.ThemeEditor/ViewModels/ThemeComponentViewModel.cs
Normal file
19
Filtration.ThemeEditor/ViewModels/ThemeComponentViewModel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Windows.Media;
|
||||
using Filtration.ObjectModel.Enums;
|
||||
|
||||
namespace Filtration.ThemeEditor.ViewModels
|
||||
{
|
||||
public interface IThemeComponentViewModel
|
||||
{
|
||||
string ComponentName { get; set; }
|
||||
ThemeComponentType ComponentType { get; set; }
|
||||
Color Color { get; set; }
|
||||
}
|
||||
|
||||
public class ThemeComponentViewModel : IThemeComponentViewModel
|
||||
{
|
||||
public string ComponentName { get; set; }
|
||||
public ThemeComponentType ComponentType { get; set; }
|
||||
public Color Color { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user