using System.Collections.Generic;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Dlna
{
///
/// Class AudioOptions.
///
public class AudioOptions
{
public string ItemId { get; set; }
public List MediaSources { get; set; }
public DeviceProfile Profile { get; set; }
///
/// Optional. Only needed if a specific AudioStreamIndex or SubtitleStreamIndex are requested.
///
public string MediaSourceId { get; set; }
public string DeviceId { get; set; }
///
/// Allows an override of supported number of audio channels
/// Example: DeviceProfile supports five channel, but user only has stereo speakers
///
public int? MaxAudioChannels { get; set; }
///
/// The application's configured quality setting
///
public int? MaxBitrate { get; set; }
}
}