aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/SubtitleStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/SubtitleStream.cs')
-rw-r--r--MediaBrowser.Model/Entities/SubtitleStream.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/SubtitleStream.cs b/MediaBrowser.Model/Entities/SubtitleStream.cs
new file mode 100644
index 000000000..7a59d9302
--- /dev/null
+++ b/MediaBrowser.Model/Entities/SubtitleStream.cs
@@ -0,0 +1,17 @@
+using ProtoBuf;
+
+namespace MediaBrowser.Model.Entities
+{
+ [ProtoContract]
+ public class SubtitleStream
+ {
+ [ProtoMember(1)]
+ public string Language { get; set; }
+
+ [ProtoMember(2)]
+ public bool IsDefault { get; set; }
+
+ [ProtoMember(3)]
+ public bool IsForced { get; set; }
+ }
+}