21 lines
576 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|