14 lines
324 B
C#
Raw Permalink Normal View History

2024-12-19 16:07:07 +08:00
using Volo.Abp.Reflection;
namespace JiShe.CollectBus.Permissions;
public class CollectBusPermissions
{
public const string GroupName = "CollectBus";
public static string[] GetAll()
{
2025-06-06 14:15:31 +08:00
return Volo.Abp.Reflection.ReflectionHelper.GetPublicConstantsRecursively(typeof(CollectBusPermissions));
2024-12-19 16:07:07 +08:00
}
}