2025-05-06 06:45:49 +00:00
|
|
|
|
using Volo.Abp.Reflection;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.Permissions;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class NotificationPermissions
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string GroupName = "Notifications";
|
|
|
|
|
|
|
|
|
|
|
|
public static string[] GetAll()
|
|
|
|
|
|
{
|
|
|
|
|
|
return ReflectionHelper.GetPublicConstantsRecursively(typeof(NotificationPermissions));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|