Filtration/Filtration.ObjectModel/Enums/ThemeComponentType.cs

15 lines
285 B
C#
Raw Normal View History

2015-06-26 12:42:20 -04:00
using System.ComponentModel;
namespace Filtration.ObjectModel.Enums
{
public enum ThemeComponentType
{
[Description("Text")]
TextColor,
[Description("Background")]
BackgroundColor,
[Description("Border")]
BorderColor
}
}