2019-01-27 04:33:20 -08:00

13 lines
306 B
C#

using AsyncRAT_Sharp.Sockets;
using System.Collections.Generic;
namespace AsyncRAT_Sharp
{
class Settings
{
public static readonly List<Clients> Online = new List<Clients>();
public static readonly int Port = 8080;
public static readonly string Version = "0.2";
}
}