RemoteChapterResult.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. 
  2. namespace MediaBrowser.Model.Chapters
  3. {
  4. public class RemoteChapterResult
  5. {
  6. /// <summary>
  7. /// Gets or sets the identifier.
  8. /// </summary>
  9. /// <value>The identifier.</value>
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// Gets or sets the run time ticks.
  13. /// </summary>
  14. /// <value>The run time ticks.</value>
  15. public long? RunTimeTicks { get; set; }
  16. /// <summary>
  17. /// Gets or sets the name.
  18. /// </summary>
  19. /// <value>The name.</value>
  20. public string Name { get; set; }
  21. /// <summary>
  22. /// Gets or sets the name of the provider.
  23. /// </summary>
  24. /// <value>The name of the provider.</value>
  25. public string ProviderName { get; set; }
  26. /// <summary>
  27. /// Gets or sets the community rating.
  28. /// </summary>
  29. /// <value>The community rating.</value>
  30. public float? CommunityRating { get; set; }
  31. /// <summary>
  32. /// Gets or sets the chapter count.
  33. /// </summary>
  34. /// <value>The chapter count.</value>
  35. public int? ChapterCount { get; set; }
  36. /// <summary>
  37. /// Gets or sets the name of the three letter iso language.
  38. /// </summary>
  39. /// <value>The name of the three letter iso language.</value>
  40. public string ThreeLetterISOLanguageName { get; set; }
  41. }
  42. }