Files
DanhengServer-OpenSource/WebServer/Objects/RequestBodies.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

29 lines
657 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 NewLoginReqJson
{
public string? account { get; set; }
public string? password { 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; }
}