Files
downkyicore/DownKyi.Core/Aria2cNet/Client/Entity/SystemMulticallMathod.cs
2023-12-12 16:58:45 +08:00

11 lines
262 B
C#

using Newtonsoft.Json;
namespace DownKyi.Core.Aria2cNet.Client.Entity;
[JsonObject]
public class SystemMulticallMathod
{
[JsonProperty("method")] public string Method { get; set; }
[JsonProperty("params")] public List<object> Params { get; set; }
}