using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.MediaInfo
{
public class PlaybackInfoResponse
{
///
/// Gets or sets the media sources.
///
/// The media sources.
public MediaSourceInfo[] MediaSources { get; set; }
///
/// Gets or sets the play session identifier.
///
/// The play session identifier.
public string PlaySessionId { get; set; }
///
/// Gets or sets the error code.
///
/// The error code.
public PlaybackErrorCode? ErrorCode { get; set; }
public PlaybackInfoResponse()
{
MediaSources = new MediaSourceInfo[] { };
}
}
}