using Server.Algorithm; using Server.Connection; using System.Collections.Generic; using System.IO; using System.Security.Cryptography.X509Certificates; using System.Windows.Forms; namespace Server { public static class Settings { public static List Blocked = new List(); public static object LockBlocked = new object(); public static long SentValue { get; set; } public static long ReceivedValue { get; set; } public static object LockReceivedSendValue = new object(); public static string CertificatePath = Application.StartupPath + "\\ServerCertificate.p12"; public static X509Certificate2 ServerCertificate; public static readonly string Version = "DcRat 1.0.1"; public static object LockListviewClients = new object(); public static object LockListviewLogs = new object(); public static object LockListviewThumb = new object(); public static bool ReportWindow = false; public static List ReportWindowClients = new List(); public static object LockReportWindowClients = new object(); } }