Files
DanhengServer-OpenSource/WebServer/Server/MuipSession.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
381 B
C#

using EggLink.DanhengServer.Database.Account;
namespace EggLink.DanhengServer.WebServer.Server;
public class MuipSession
{
public string RsaPublicKey { get; set; } = "";
public string SessionId { get; set; } = "";
public long ExpireTimeStamp { get; set; } = 0;
public bool IsAdmin { get; set; } = false;
public AccountData? Account { get; set; } = null;
}