AtlasC2/APIModels/Requests/ImplantTaskRequest.cs

26 lines
548 B
C#
Raw Normal View History

2021-12-26 17:40:51 -08:00
using System;
using System.Collections.Generic;
namespace APIModels.Requests
{
[Serializable]
public class TaskArgs
{
public string OptionName { get; set; }
public string OptionValue { get; set; }
}
[Serializable]
public class ArgsRecv{
public List<TaskArgs> Params { get; set; }
}
public class ImplantTaskRequest
{
public string Command { get; set; }
// json str, see alpha
public string Args { get; set; }
public string File { get; set; }
}
}