Files
DanhengServer-OpenSource/WebServer/Response/AuthAdminKeyResponse.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

13 lines
386 B
C#

namespace EggLink.DanhengServer.WebServer.Response;
public class AuthAdminKeyResponse(int code, string message, AuthAdminKeyData? data)
: BaseResponse<AuthAdminKeyData>(code, message, data)
{
}
public class AuthAdminKeyData
{
public string RsaPublicKey { get; set; } = "";
public string SessionId { get; set; } = "";
public long ExpireTimeStamp { get; set; } = 0;
}