using System.Collections; namespace Yuna.Website.Server.Infrastructure { public static class CollectionExtensions { public static bool IsNullOrEmpty(this T? collection) where T : IList { if (collection is null) return true; if (collection.Count == 0) return true; return false; } } }