CategoryInfo.cs 581 B

123456789101112131415161718192021
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// This is a stub class used by the api to get IBN types in a compact format
  6. /// </summary>
  7. public class CategoryInfo
  8. {
  9. /// <summary>
  10. /// The name of the genre, year, studio, etc
  11. /// </summary>
  12. public string Name { get; set; }
  13. public string PrimaryImagePath { get; set; }
  14. /// <summary>
  15. /// The number of items that have the genre, year, studio, etc
  16. /// </summary>
  17. public int ItemCount { get; set; }
  18. }
  19. }