mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
11 lines
283 B
C#
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; }
|
|
}
|
|
}
|