Files
cms_thermo_active/Client.Config/SubModels/Client.cs
T
2020-10-23 17:09:45 +02:00

21 lines
576 B
C#

using System;
using System.Drawing;
using static Client.Utils.Constants;
namespace Client.Config.SubModels
{
public class Client
{
public Color TranspColor { get; set; }
public Rendering RenderingMethod { get; set; }
public Boolean RunningOnSecondaryScreen { get; set; }
public Boolean ShowVirtualKeyboard { get; set; }
public Boolean DeveloperMode { get; set; }
public Boolean IsSCM { get; set; }
public Boolean Autorun { get; set; }
public Boolean EnableTransparent { get; set; }
}
}