Files
DanhengServer-OpenSource/WebServer/Objects/RequestBodies.cs
2024-02-24 22:42:19 +08:00

25 lines
612 B
C#

namespace EggLink.DanhengServer.WebServer.Objects
{
public class LoginReqJson
{
public string account { get; set; }
public string password { get; set; }
public bool is_crypto { get; set; }
}
public class VerifyReqJson
{
public string uid { get; set; }
public string token { get; set; }
}
public class LoginV2ReqJson
{
public int app_id { get; set; }
public int channel_id { get; set; }
public string data { get; set; }
public string device { get; set; }
public string sign { get; set; }
}
}