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