using System.ComponentModel; using System.Reflection; namespace Bloxstrap.Extensions { internal static class TEnumEx { public static string? GetDescription(this TEnum e) { DescriptionAttribute? attribute = e?.GetType().GetCustomAttribute(); return attribute?.Description; } } }