nexusforever/Source/NexusForever.Database.Auth/Model/ServerModel.cs
Rawaho 6ebe337877 Implemented database migrations.
Moved from database first to code first.
Upgraded to EFCore 3.1.
Upgraded to .NET Core 3.1.
2020-02-29 15:44:17 +13:00

11 lines
290 B
C#

namespace NexusForever.Database.Auth.Model
{
public class ServerModel
{
public byte Id { get; set; }
public string Name { get; set; }
public string Host { get; set; }
public ushort Port { get; set; }
public byte Type { get; set; }
}
}