implement more robust command api and login

improve web console command response reliability and consistency
This commit is contained in:
RaidMax
2021-01-17 21:58:18 -06:00
parent dd3ebf6b34
commit 23a33ba489
12 changed files with 260 additions and 56 deletions

View File

@ -0,0 +1,7 @@
namespace WebfrontCore.Controllers.API.Models
{
public class CommandRequest
{
public string Command { get; set; }
}
}