sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/LanguagesDbProperties.cs
2026-03-02 00:54:46 +03:00

19 lines
469 B
C#

namespace Sozsoft.Languages;
public static class Prefix
{
public static string MenuPrefix { get; set; } = "Sas";
public static string HostPrefix { get; set; } = "H";
public static string? DbSchema { get; set; } = null;
public const string ConnectionStringName = "Languages";
}
public static class TablePrefix
{
public static string ByName(string tableName)
{
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
}
}