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