mirror of https://github.com/qwqdanchun/DcRat.git
30 lines
654 B
C#
30 lines
654 B
C#
using Server.MessagePack;
|
|
using Server.Connection;
|
|
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 Server.Helper
|
|
{
|
|
public class AsyncTask
|
|
{
|
|
public byte[] msgPack;
|
|
public string id;
|
|
public bool admin;
|
|
public List<string> doneClient;
|
|
|
|
public AsyncTask(byte[] _msgPack, string _id,bool _admin)
|
|
{
|
|
msgPack = _msgPack;
|
|
id = _id;
|
|
admin = _admin;
|
|
doneClient = new List<string>();
|
|
}
|
|
}
|
|
|
|
} |