10 lines
304 B
C#
10 lines
304 B
C#
namespace BasicDotnetTemplate.MainProject.Models.Settings;
|
|
|
|
public class DatabaseSettings
|
|
{
|
|
#nullable enable
|
|
public string? SqlServerConnectionString { get; set; }
|
|
public string? MongoDbConnectionString { get; set; }
|
|
public string? PostgreSQLConnectionString { get; set; }
|
|
#nullable disable
|
|
} |