You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
586 B
16 lines
586 B
3 years ago
|
namespace TenantManagement.Api.DDD.Contracts;
|
||
3 years ago
|
|
||
|
public class TenantManagement
|
||
|
{
|
||
|
public const string GroupName = "TenantManagement";
|
||
|
public static class Tenants
|
||
|
{
|
||
|
public const string Default = GroupName + ".Tenants";
|
||
|
public const string Create = Default + ".Create";
|
||
|
public const string Update = Default + ".Update";
|
||
|
public const string Delete = Default + ".Delete";
|
||
|
public const string ManageFeatures = Default + ".ManageFeatures";
|
||
|
public const string ManageConnectionStrings = Default + ".ManageConnectionStrings";
|
||
|
}
|
||
|
}
|