12 lines
233 B
C#
12 lines
233 B
C#
using AsyncRAT_Sharp.Sockets;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AsyncRAT_Sharp
|
|
{
|
|
class Settings
|
|
{
|
|
public static List<Clients> Online = new List<Clients>();
|
|
public static int Port = 8080;
|
|
}
|
|
}
|