NYAN CAT 56501ac691 Update
Added remotedesktop + process manager
2019-02-07 15:57:05 -08:00

15 lines
386 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 = 6606;
public static readonly string Version = "0.2.3";
public static long Sent = 0;
public static long Received = 0;
}
}