Files
Servers/MoonlightServers.Shared/Http/Responses/Admin/NodeAllocations/NodeAllocationResponse.cs

9 lines
225 B
C#

namespace MoonlightServers.Shared.Http.Responses.Admin.NodeAllocations;
public class NodeAllocationResponse
{
public int Id { get; set; }
public string IpAddress { get; set; }
public int Port { get; set; }
}