mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
253 B
C#
10 lines
253 B
C#
namespace EggLink.DanhengServer.WebServer.Request
|
|
{
|
|
public class AdminExecRequest
|
|
{
|
|
public string SessionId { get; set; } = "";
|
|
public string Command { get; set; } = "";
|
|
public int TargetUid { get; set; } = 0;
|
|
}
|
|
}
|