using System; using System.ComponentModel.DataAnnotations; using System.Reflection; namespace LEA.Extensions; public static class EnumExtensions { public static string GetDisplayName(this Enum value) { var memberInfo = value.GetType().GetMember(value.ToString()).FirstOrDefault(); var displayAttribute = memberInfo?.GetCustomAttribute(); return displayAttribute?.GetName() ?? value.ToString(); } }