TrickplayTilesInfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. namespace MediaBrowser.Model.Entities
  2. {
  3. /// <summary>
  4. /// Class TrickplayTilesInfo.
  5. /// </summary>
  6. public class TrickplayTilesInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets width of an individual tile.
  10. /// </summary>
  11. /// <value>The width.</value>
  12. public int Width { get; set; }
  13. /// <summary>
  14. /// Gets or sets height of an individual tile.
  15. /// </summary>
  16. /// <value>The height.</value>
  17. public int Height { get; set; }
  18. /// <summary>
  19. /// Gets or sets amount of tiles per row.
  20. /// </summary>
  21. /// <value>The tile grid's width.</value>
  22. public int TileWidth { get; set; }
  23. /// <summary>
  24. /// Gets or sets amount of tiles per column.
  25. /// </summary>
  26. /// <value>The tile grid's height.</value>
  27. public int TileHeight { get; set; }
  28. /// <summary>
  29. /// Gets or sets total amount of non-black tiles.
  30. /// </summary>
  31. /// <value>The tile count.</value>
  32. public int TileCount { get; set; }
  33. /// <summary>
  34. /// Gets or sets interval in milliseconds between each trickplay tile.
  35. /// </summary>
  36. /// <value>The interval.</value>
  37. public int Interval { get; set; }
  38. /// <summary>
  39. /// Gets or sets peak bandwith usage in bits per second.
  40. /// </summary>
  41. /// <value>The bandwidth.</value>
  42. public int Bandwidth { get; set; }
  43. }
  44. }