using System.Collections.Generic; namespace ErsatzTV.Core.Domain { public class MultiCollection { public int Id { get; set; } public string Name { get; set; } public List Collections { get; set; } public List SmartCollections { get; set; } public List MultiCollectionItems { get; set; } public List MultiCollectionSmartItems { get; set; } } }