22 lines
613 B
C#
22 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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; }
|
|
}
|
|
}
|