Refactored ui. Improved console experience. Added command endpoint
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace MoonlightServers.DaemonShared.DaemonSide.Http.Requests;
|
||||
|
||||
public class ServerCommandRequest
|
||||
{
|
||||
[Required(ErrorMessage = "The command is required")]
|
||||
public string Command { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user