11 lines
252 B
C#
11 lines
252 B
C#
|
|
namespace Kurs.Settings;
|
|||
|
|
|
|||
|
|
public static class SettingsDbProperties
|
|||
|
|
{
|
|||
|
|
public static string DbTablePrefix { get; set; } = "P";
|
|||
|
|
|
|||
|
|
public static string? DbSchema { get; set; } = null;
|
|||
|
|
|
|||
|
|
public const string ConnectionStringName = "Settings";
|
|||
|
|
}
|