14 lines
313 B
C#
14 lines
313 B
C#
using Volo.Abp.Reflection;
|
|
|
|
namespace Erp.Notifications.Permissions;
|
|
|
|
public class NotificationPermissions
|
|
{
|
|
public const string GroupName = "Notifications";
|
|
|
|
public static string[] GetAll()
|
|
{
|
|
return ReflectionHelper.GetPublicConstantsRecursively(typeof(NotificationPermissions));
|
|
}
|
|
}
|
|
|