erp-platform/api/modules/Erp.Settings/Erp.Settings.Domain/SettingsDbProperties.cs
2025-11-11 22:49:52 +03:00

18 lines
463 B
C#

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