aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Dto/BaseItemDto.cs3
-rw-r--r--MediaBrowser.Model/Entities/TrickplayTilesInfo.cs49
2 files changed, 2 insertions, 50 deletions
diff --git a/MediaBrowser.Model/Dto/BaseItemDto.cs b/MediaBrowser.Model/Dto/BaseItemDto.cs
index 3db9cb08b..287966dd0 100644
--- a/MediaBrowser.Model/Dto/BaseItemDto.cs
+++ b/MediaBrowser.Model/Dto/BaseItemDto.cs
@@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
+using Jellyfin.Data.Entities;
using Jellyfin.Data.Enums;
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Entities;
@@ -572,7 +573,7 @@ namespace MediaBrowser.Model.Dto
/// Gets or sets the trickplay manifest.
/// </summary>
/// <value>The trickplay manifest.</value>
- public Dictionary<string, Dictionary<int, TrickplayTilesInfo>> Trickplay { get; set; }
+ public Dictionary<string, Dictionary<int, TrickplayInfo>> Trickplay { get; set; }
/// <summary>
/// Gets or sets the type of the location.
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; }
-}