diff options
Diffstat (limited to 'src/IOL.Helpers/EnumHelpers.cs')
| -rw-r--r-- | src/IOL.Helpers/EnumHelpers.cs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/IOL.Helpers/EnumHelpers.cs b/src/IOL.Helpers/EnumHelpers.cs index b63e045..5434992 100644 --- a/src/IOL.Helpers/EnumHelpers.cs +++ b/src/IOL.Helpers/EnumHelpers.cs @@ -2,12 +2,11 @@ using System; using System.Collections.Generic; using System.Linq; -namespace IOL.Helpers +namespace IOL.Helpers; + +public static class EnumHelpers { - public static class EnumHelpers - { - public static IEnumerable<T> GetValues<T>() { - return Enum.GetValues(typeof(T)).Cast<T>(); - } + public static IEnumerable<T> GetValues<T>() { + return Enum.GetValues(typeof(T)).Cast<T>(); } -}
\ No newline at end of file +} |
