Files
Servers/MoonlightServers.Shared/Http/Responses/Admin/NodeAllocations/NodeAllocationDetailResponse.cs
2024-12-11 16:42:56 +01:00

9 lines
231 B
C#

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; }
}