2026-02-24 20:44:16 +00:00
|
|
|
|
namespace Sozsoft.Settings;
|
|
|
|
|
|
|
|
|
|
|
|
public static class SettingsConsts
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string AppName = "Settings";
|
|
|
|
|
|
|
|
|
|
|
|
public const string MainGroup = "MainGroup";
|
|
|
|
|
|
public const string SubGroup = "SubGroup";
|
|
|
|
|
|
public const string DataType = "DataType";
|
|
|
|
|
|
public const string SelectOptions = "SelectOptions";
|
|
|
|
|
|
public const string RequiredPermission = "RequiredPermission";
|
|
|
|
|
|
|
|
|
|
|
|
public const string DefaultGroup = "Others";
|
|
|
|
|
|
public const string DefaultType = SettingDataTypes.Text;
|
|
|
|
|
|
|
|
|
|
|
|
public const string FormNamePrefix = "Setting_";
|
|
|
|
|
|
|
2026-05-25 14:31:54 +00:00
|
|
|
|
public const string DefaultDatabaseProvider = DatabaseProvider.PostgreSql;
|
2026-02-24 20:44:16 +00:00
|
|
|
|
|
|
|
|
|
|
public static class DatabaseProvider
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string SqlServer = "SqlServer";
|
|
|
|
|
|
public const string PostgreSql = "PostgreSql";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|