18 lines
547 B
C#
18 lines
547 B
C#
|
|
namespace Kurs.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_";
|
|||
|
|
}
|