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