using System; using System.Linq; namespace Volo.Abp.Localization; public class LocalizationResourceNameAttribute : Attribute { public string Name { get; } public LocalizationResourceNameAttribute(string name) { Name = name; } public static LocalizationResourceNameAttribute? GetOrNull(Type resourceType) { return resourceType .GetCustomAttributes(true) .OfType() .FirstOrDefault(); } public static string GetName(Type resourceType) { return (GetOrNull(resourceType)?.Name ?? resourceType.FullName)!; } }