mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
- Fix when enter the layer 3's last room, there wont be any select menu - Add web Handler for getting information
14 lines
307 B
C#
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; }
|
|
}
|
|
}
|