aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/StreamOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-13 13:27:13 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-13 13:27:13 -0400
commit8df1ebe49967ed96b85076bf4dbfbf761fb5268d (patch)
treed13e5447fa0551a6f6ced8fb09ae6cad3786c0e9 /MediaBrowser.Model/Dto/StreamOptions.cs
parentb6ca79b73fdae969773935068c175ace43ac778d (diff)
add new mirror mode
Diffstat (limited to 'MediaBrowser.Model/Dto/StreamOptions.cs')
-rw-r--r--MediaBrowser.Model/Dto/StreamOptions.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dto/StreamOptions.cs b/MediaBrowser.Model/Dto/StreamOptions.cs
index c38707e53..b1ead2ca3 100644
--- a/MediaBrowser.Model/Dto/StreamOptions.cs
+++ b/MediaBrowser.Model/Dto/StreamOptions.cs
@@ -158,4 +158,19 @@
/// <value>The device id.</value>
public string DeviceId { get; set; }
}
+
+ public class SubtitleOptions
+ {
+ /// <summary>
+ /// Gets or sets the item identifier.
+ /// </summary>
+ /// <value>The item identifier.</value>
+ public string ItemId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the index of the stream.
+ /// </summary>
+ /// <value>The index of the stream.</value>
+ public int StreamIndex { get; set; }
+ }
}