8 lines
202 B
C#
8 lines
202 B
C#
namespace Moonlight.Features.Servers.Entities;
|
|
|
|
public class ServerAllocation
|
|
{
|
|
public int Id { get; set; }
|
|
public string IpAddress { get; set; } = "0.0.0.0";
|
|
public int Port { get; set; }
|
|
} |