jellyfin-server/MediaBrowser.Model/DTO/AudioOutputFormats.cs
LukePulverenti Luke Pulverenti luke pulverenti 9f1a7845dd Added GetAudioStreamUrl to ApiClient
2012-09-09 09:56:04 -04:00

16 lines
285 B
C#

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