Files
DanhengServer-OpenSource/WebServer/Request/InformationRequest.cs
Somebody c7c7a071be Fix Chess Rogue Bug & Feature: MuipServer PlayerInformation
- Fix when enter the layer 3's last room, there wont be any select menu
- Add web Handler for getting information
2024-07-08 14:15:07 +08:00

14 lines
307 B
C#

namespace EggLink.DanhengServer.WebServer.Request
{
public class ServerInformationRequest
{
public string SessionId { get; set; } = "";
}
public class PlayerInformationRequest
{
public string SessionId { get; set; } = "";
public int Uid { get; set; }
}
}