Added GetAudioStreamUrl to ApiClient

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-09 09:56:04 -04:00
parent 5525d108d3
commit 9f1a7845dd
6 changed files with 73 additions and 53 deletions

View File

@@ -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
}
}