using System; using System.Collections.Generic; using System.Text; namespace BaseService.Permissions { public static class BaseServicePermissions { public const string BaseService = "BaseService"; public static class AuditLogging { public const string Default = BaseService + ".AuditLogging"; } public static class Branch { public const string Default = BaseService + ".Branch"; public const string Delete = Default + ".Delete"; public const string Update = Default + ".Update"; public const string Create = Default + ".Create"; } public static class UserBranch { public const string Default = BaseService + ".UserBranch"; public const string Delete = Default + ".Delete"; public const string Update = Default + ".Update"; public const string Create = Default + ".Create"; } } }