6 lines
159 B
C#
6 lines
159 B
C#
|
namespace Server.Models.Database;
|
||
|
|
||
|
public record MongoSettings(string ConnectionString, string DatabaseName) {
|
||
|
public MongoSettings() : this("", "") { }
|
||
|
}
|