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