aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/AudioStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/AudioStream.cs')
-rw-r--r--MediaBrowser.Model/Entities/AudioStream.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/AudioStream.cs b/MediaBrowser.Model/Entities/AudioStream.cs
new file mode 100644
index 000000000..8a4cea4ee
--- /dev/null
+++ b/MediaBrowser.Model/Entities/AudioStream.cs
@@ -0,0 +1,26 @@
+using ProtoBuf;
+
+namespace MediaBrowser.Model.Entities
+{
+ [ProtoContract]
+ public class AudioStream
+ {
+ [ProtoMember(1)]
+ public string Codec { get; set; }
+
+ [ProtoMember(2)]
+ public string Language { get; set; }
+
+ [ProtoMember(3)]
+ public int BitRate { get; set; }
+
+ [ProtoMember(4)]
+ public int Channels { get; set; }
+
+ [ProtoMember(5)]
+ public int SampleRate { get; set; }
+
+ [ProtoMember(6)]
+ public bool IsDefault { get; set; }
+ }
+}