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