18 lines
381 B
C#
18 lines
381 B
C#
namespace Pilz.UI.WinForms.Telerik.Theming;
|
|
|
|
public class ThemeDefinition
|
|
{
|
|
public ApplicationTheme Theme { get; set; }
|
|
public HighContrastMode HighContrast { get; set; }
|
|
|
|
public ThemeDefinition()
|
|
{
|
|
}
|
|
|
|
public ThemeDefinition(ApplicationTheme theme, HighContrastMode highContrast)
|
|
{
|
|
Theme = theme;
|
|
HighContrast = highContrast;
|
|
}
|
|
}
|