8 lines
217 B
C#
8 lines
217 B
C#
namespace MoonlightServers.Shared.Http.Responses.User.Allocations;
|
|
|
|
public class AllocationDetailResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string IpAddress { get; set; }
|
|
public int Port { get; set; }
|
|
} |