mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
12 lines
335 B
C#
12 lines
335 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 SessionId { get; set; } = "";
|
|
public long ExpireTimeStamp { get; set; } = 0;
|
|
} |