Added node allocation ui

This commit is contained in:
Masu-Baumgartner
2024-09-02 14:42:06 +02:00
parent 45a3a76214
commit 30d912e412
7 changed files with 144 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
namespace MoonlightServers.Shared.Http.Responses.Admin.Allocations;
public class DetailAllocationResponse
{
public int Id { get; set; }
public string IpAddress { get; set; } = "0.0.0.0";
public int Port { get; set; }
}