aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorNick <20588554+nicknsy@users.noreply.github.com>2023-06-26 17:40:10 -0700
committerNick <20588554+nicknsy@users.noreply.github.com>2023-06-26 17:40:10 -0700
commitab20ceaad65b2e72fe6e823aa6086e2c6ac36844 (patch)
tree1d44d299780ad2433c4b84b93487be8701f3ce90 /MediaBrowser.Model/Entities
parenta2a144869d38b295fac0c3ab5bf0ee66b84e4eb0 (diff)
Migrate to trickplay table to EF. Rename vars/methods/members to have consistent use of tile and thumbnail
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/TrickplayTilesInfo.cs49
1 files changed, 0 insertions, 49 deletions
diff --git a/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs b/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs
deleted file mode 100644
index 86d37787f..000000000
--- a/MediaBrowser.Model/Entities/TrickplayTilesInfo.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-namespace MediaBrowser.Model.Entities;
-
-/// <summary>
-/// Class TrickplayTilesInfo.
-/// </summary>
-public class TrickplayTilesInfo
-{
- /// <summary>
- /// Gets or sets width of an individual tile.
- /// </summary>
- /// <value>The width.</value>
- public int Width { get; set; }
-
- /// <summary>
- /// Gets or sets height of an individual tile.
- /// </summary>
- /// <value>The height.</value>
- public int Height { get; set; }
-
- /// <summary>
- /// Gets or sets amount of tiles per row.
- /// </summary>
- /// <value>The tile grid's width.</value>
- public int TileWidth { get; set; }
-
- /// <summary>
- /// Gets or sets amount of tiles per column.
- /// </summary>
- /// <value>The tile grid's height.</value>
- public int TileHeight { get; set; }
-
- /// <summary>
- /// Gets or sets total amount of non-black tiles.
- /// </summary>
- /// <value>The tile count.</value>
- public int TileCount { get; set; }
-
- /// <summary>
- /// Gets or sets interval in milliseconds between each trickplay tile.
- /// </summary>
- /// <value>The interval.</value>
- public int Interval { get; set; }
-
- /// <summary>
- /// Gets or sets peak bandwith usage in bits per second.
- /// </summary>
- /// <value>The bandwidth.</value>
- public int Bandwidth { get; set; }
-}