2015-03-06 20:53:31 -07:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-11-18 19:45:12 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
|
|
|
{
|
|
|
|
|
public class LiveMediaInfoResult
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the media sources.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The media sources.</value>
|
|
|
|
|
public List<MediaSourceInfo> MediaSources { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-03-23 10:19:21 -07:00
|
|
|
|
/// Gets or sets the stream identifier.
|
2014-11-18 19:45:12 -07:00
|
|
|
|
/// </summary>
|
2015-03-23 10:19:21 -07:00
|
|
|
|
/// <value>The stream identifier.</value>
|
|
|
|
|
public string StreamId { get; set; }
|
2014-11-18 19:45:12 -07:00
|
|
|
|
|
2015-03-06 20:53:31 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the error code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The error code.</value>
|
|
|
|
|
public PlaybackErrorCode? ErrorCode { get; set; }
|
|
|
|
|
|
2014-11-18 19:45:12 -07:00
|
|
|
|
public LiveMediaInfoResult()
|
|
|
|
|
{
|
|
|
|
|
MediaSources = new List<MediaSourceInfo>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|