10 lines
264 B
C#
10 lines
264 B
C#
namespace KonSoft.TenantManagement.Settings;
|
|
|
|
public static class TenantManagementSettings
|
|
{
|
|
private const string Prefix = "TenantManagement";
|
|
|
|
//Add your own setting names here. Example:
|
|
//public const string MySetting1 = Prefix + ".MySetting1";
|
|
}
|