Files
Servers/MoonlightServers.Shared/Http/Responses/Admin/Allocations/DetailAllocationResponse.cs
2024-09-02 14:42:06 +02:00

8 lines
231 B
C#

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