mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
262 B
C#
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; }
|
|
} |