mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
8 lines
203 B
C#
8 lines
203 B
C#
|
namespace Supercell.GUT.Server.Database.Options;
|
|||
|
|
|||
|
public class DatabaseOptions
|
|||
|
{
|
|||
|
public required string MongoConnectionString { get; set; }
|
|||
|
public required string DatabaseName { get; set; }
|
|||
|
}
|