Added simple node crud

This commit is contained in:
2024-12-11 16:42:56 +01:00
parent 220eb28657
commit 4168b93d61
9 changed files with 378 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace MoonlightServers.Shared.Http.Responses.Admin.NodeAllocations;
public class NodeAllocationDetailResponse
{
public int Id { get; set; }
public string IpAddress { get; set; }
public int Port { get; set; }
}