CategoryInfo.cs 527 B

12345678910111213141516171819
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. /// <summary>
  5. /// This is a stub class used by the api to get IBN types along with their item counts
  6. /// </summary>
  7. public class CategoryInfo<T>
  8. {
  9. /// <summary>
  10. /// The actual genre, year, studio, etc
  11. /// </summary>
  12. public T Item { get; set; }
  13. /// <summary>
  14. /// The number of items that have the genre, year, studio, etc
  15. /// </summary>
  16. public int ItemCount { get; set; }
  17. }
  18. }