using MediaBrowser.Model.Dto; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; namespace MediaBrowser.Api.DefaultTheme { public class ItemStub { public string Name { get; set; } public string Id { get; set; } public Guid ImageTag { get; set; } public ImageType ImageType { get; set; } } public class MoviesView { public List SpotlightItems { get; set; } public List MovieItems { get; set; } public List PeopleItems { get; set; } public List BoxSetItems { get; set; } public List TrailerItems { get; set; } public List HDItems { get; set; } public List ThreeDItems { get; set; } public List FamilyMovies { get; set; } public List RomanceItems { get; set; } public List ComedyItems { get; set; } public double FamilyMoviePercentage { get; set; } public double HDMoviePercentage { get; set; } } public class TvView { public List SpotlightItems { get; set; } public List ShowsItems { get; set; } public List ActorItems { get; set; } public List RomanceItems { get; set; } public List ComedyItems { get; set; } } public class GamesView { public List SpotlightItems { get; set; } } public class HomeView { public List SpotlightItems { get; set; } } }