summary refs log tree commit diff
path: root/BatchBeatmapDownloader/ObjectCollectionWrapper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BatchBeatmapDownloader/ObjectCollectionWrapper.cs')
-rw-r--r--BatchBeatmapDownloader/ObjectCollectionWrapper.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/BatchBeatmapDownloader/ObjectCollectionWrapper.cs b/BatchBeatmapDownloader/ObjectCollectionWrapper.cs
new file mode 100644
index 0000000..2171969
--- /dev/null
+++ b/BatchBeatmapDownloader/ObjectCollectionWrapper.cs
@@ -0,0 +1,7 @@
+using System.Collections.Generic;
+
+namespace BatchBeatmapDownloader;
+
+public class ObjectCollectionWrapper<T>(IEnumerable<T> items) {
+	public List<T> Items { get; set; } = new(items);
+}