namespace MediaBrowser.Model.Entities;
///
/// Class TrickplayTilesInfo.
///
public class TrickplayTilesInfo
{
///
/// Gets or sets width of an individual tile.
///
/// The width.
public int Width { get; set; }
///
/// Gets or sets height of an individual tile.
///
/// The height.
public int Height { get; set; }
///
/// Gets or sets amount of tiles per row.
///
/// The tile grid's width.
public int TileWidth { get; set; }
///
/// Gets or sets amount of tiles per column.
///
/// The tile grid's height.
public int TileHeight { get; set; }
///
/// Gets or sets total amount of non-black tiles.
///
/// The tile count.
public int TileCount { get; set; }
///
/// Gets or sets interval in milliseconds between each trickplay tile.
///
/// The interval.
public int Interval { get; set; }
///
/// Gets or sets peak bandwith usage in bits per second.
///
/// The bandwidth.
public int Bandwidth { get; set; }
}