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.
7 lines
168 B
C#
7 lines
168 B
C#
namespace NexusForever.Database.Configuration
|
|
{
|
|
public interface IDatabaseConfig
|
|
{
|
|
IConnectionString GetConnectionString(DatabaseType type);
|
|
}
|
|
}
|