nexusforever/Source/NexusForever.AuthServer/AuthServerConfiguration.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
283 B
C#

using NexusForever.Database.Configuration;
using NexusForever.Shared.Configuration;
namespace NexusForever.AuthServer
{
public class AuthServerConfiguration
{
public NetworkConfig Network { get; set; }
public DatabaseConfig Database { get; set; }
}
}