Files
Moonlight/Moonlight/Features/Servers/Entities/ServerAllocation.cs

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