2015-06-26 17:42:20 +01:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace Filtration.ObjectModel.Enums
|
|
|
|
|
{
|
|
|
|
|
public enum ThemeComponentType
|
|
|
|
|
{
|
|
|
|
|
[Description("Text")]
|
|
|
|
|
TextColor,
|
|
|
|
|
[Description("Background")]
|
|
|
|
|
BackgroundColor,
|
|
|
|
|
[Description("Border")]
|
2018-08-25 15:52:16 +03:00
|
|
|
|
BorderColor,
|
|
|
|
|
[Description("Font Size")]
|
2018-08-26 20:24:13 +03:00
|
|
|
|
FontSize,
|
|
|
|
|
[Description("Alert Sound")]
|
2018-08-29 13:11:41 +03:00
|
|
|
|
AlertSound,
|
|
|
|
|
[Description("Custom Sound")]
|
2018-08-29 20:12:02 +03:00
|
|
|
|
CustomSound,
|
|
|
|
|
[Description("Icon")]
|
|
|
|
|
Icon,
|
|
|
|
|
[Description("Effect")]
|
|
|
|
|
Effect
|
2015-06-26 17:42:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|