aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/DTO/AudioOutputFormats.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-09 09:56:04 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-09 09:56:04 -0400
commit9f1a7845dd85ed83e351b5b408c3115ba95c2db8 (patch)
tree1a76fd74302bda2a826ed8cfe1c7aeea2c1ca2ed /MediaBrowser.Model/DTO/AudioOutputFormats.cs
parent5525d108d301772856b4fe2901564b35a3ad6aef (diff)
Added GetAudioStreamUrl to ApiClient
Diffstat (limited to 'MediaBrowser.Model/DTO/AudioOutputFormats.cs')
-rw-r--r--MediaBrowser.Model/DTO/AudioOutputFormats.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/DTO/AudioOutputFormats.cs b/MediaBrowser.Model/DTO/AudioOutputFormats.cs
new file mode 100644
index 000000000..1caa321e6
--- /dev/null
+++ b/MediaBrowser.Model/DTO/AudioOutputFormats.cs
@@ -0,0 +1,15 @@
+
+namespace MediaBrowser.Model.DTO
+{
+ /// <summary>
+ /// These are the audio output formats that the api is cabaple of streaming
+ /// </summary>
+ public enum AudioOutputFormats
+ {
+ Aac,
+ Flac,
+ Mp3,
+ Wav,
+ Wma
+ }
+}