using System.Collections.Generic; namespace BatchBeatmapDownloader; public class ObjectCollectionWrapper(IEnumerable items) { public List Items { get; set; } = new(items); }