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