using System.Collections.Generic; namespace ErsatzTV.Core.Domain { public class SimpleMediaCollection : MediaCollection { public List Movies { get; set; } public List TelevisionShows { get; set; } public List TelevisionSeasons { get; set; } public List TelevisionEpisodes { get; set; } } }