Files
Servers/MoonlightServers.DaemonShared/DaemonSide/Http/Requests/ServerCommandRequest.cs

9 lines
247 B
C#

using System.ComponentModel.DataAnnotations;
namespace MoonlightServers.DaemonShared.DaemonSide.Http.Requests;
public class ServerCommandRequest
{
[Required(ErrorMessage = "The command is required")]
public string Command { get; set; }
}