Files
DanhengServer-OpenSource/WebServer/Objects/RequestBodies.cs
2024-03-15 22:12:14 +08:00

25 lines
619 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; }
}
}