mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
12 lines
345 B
C#
12 lines
345 B
C#
namespace EggLink.DanhengServer.WebServer.Response;
|
|
|
|
public class ExecuteCommandResponse(int code, string message, ExecuteCommandData? data = null)
|
|
: BaseResponse<ExecuteCommandData>(code, message, data)
|
|
{
|
|
}
|
|
|
|
public class ExecuteCommandData
|
|
{
|
|
public string SessionId { get; set; } = "";
|
|
public string Message { get; set; } = "";
|
|
} |