using MediaBrowser.Model.Entities; using System; namespace MediaBrowser.Model.DTO { /// /// This is a stub class used by the api to get IBN types along with their item counts /// public class IBNItem { /// /// The name of the person, genre, etc /// public string Name { get; set; } /// /// The id of the person, genre, etc /// public Guid Id { get; set; } public bool HasImage { get; set; } /// /// The number of items that have the genre, year, studio, etc /// public int BaseItemCount { get; set; } } /// /// This is used by the api to get information about a Person within a BaseItem /// public class BaseItemPerson { public string Name { get; set; } public string Overview { get; set; } public string Type { get; set; } public bool HasImage { get; set; } } /// /// This is used by the api to get information about a studio within a BaseItem /// public class BaseItemStudio { public string Name { get; set; } public bool HasImage { get; set; } } }