mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
8 lines
226 B
C#
8 lines
226 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;
|
|
} |