TrickplayTilesInfo.cs 1.3 KB

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