using AsyncRAT_Sharp.Cryptography; using AsyncRAT_Sharp.Sockets; using System.Collections.Generic; namespace AsyncRAT_Sharp { class Settings { public static List Online = new List(); public static List Blocked = new List(); public static string Port { get; set; } public static long Sent { get; set; } public static long Received { get; set; } public static string Password { get; set; } public static Aes256 AES{ get; set; } public static readonly string Version = "AsyncRAT 0.4.2"; } }