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")]
|
2018-08-25 08:52:16 -04:00
|
|
|
|
BorderColor,
|
|
|
|
|
[Description("Font Size")]
|
2018-08-26 13:24:13 -04:00
|
|
|
|
FontSize,
|
|
|
|
|
[Description("Alert Sound")]
|
|
|
|
|
AlertSound
|
2015-06-26 12:42:20 -04:00
|
|
|
|
}
|
|
|
|
|
}
|