mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
14 lines
421 B
C#
14 lines
421 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;
|
|
}
|
|
}
|