NYAN CAT 90ffd47eb9 Update
Added Tasks
Added connect via pastebin
Fixed file manager (upload)
Updated client install (vbs)
2019-05-16 14:13:17 +03:00

28 lines
608 B
C#

using AsyncRAT_Sharp.MessagePack;
using AsyncRAT_Sharp.Sockets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
using System.Diagnostics;
namespace AsyncRAT_Sharp.Helper
{
public class AsyncTask
{
public byte[] msgPack;
public string id;
public List<string> doneClient;
public AsyncTask(byte[] _msgPack, string _id)
{
msgPack = _msgPack;
id = _id;
doneClient = new List<string>();
}
}
}