blob: 2171969146de7f862d3813ae5ef6eb1a8969827f (
plain) (
blame)
1
2
3
4
5
6
7
|
using System.Collections.Generic;
namespace BatchBeatmapDownloader;
public class ObjectCollectionWrapper<T>(IEnumerable<T> items) {
public List<T> Items { get; set; } = new(items);
}
|