using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Dto;
using System.Collections.Generic;
namespace MediaBrowser.Model.MediaInfo
{
public class PlaybackInfoResponse
{
///
/// Gets or sets the media sources.
///
/// The media sources.
public List 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 List();
}
}
}