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.
15 lines
586 B
15 lines
586 B
namespace TenantManagement.Api.DDD.Contracts;
|
|
|
|
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";
|
|
}
|
|
}
|
|
|