2014-03-13 19:08:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Dlna;
|
2014-02-27 02:44:00 +00:00
|
|
|
|
|
2014-02-26 21:31:47 +00:00
|
|
|
|
namespace MediaBrowser.Dlna.PlayTo
|
|
|
|
|
{
|
|
|
|
|
public class PlaylistItem
|
|
|
|
|
{
|
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
|
2014-03-22 18:25:03 +00:00
|
|
|
|
public string MediaSourceId { get; set; }
|
|
|
|
|
|
2014-02-26 21:31:47 +00:00
|
|
|
|
public bool Transcode { get; set; }
|
|
|
|
|
|
2014-03-22 18:25:03 +00:00
|
|
|
|
public DlnaProfileType MediaType { get; set; }
|
2014-02-26 21:31:47 +00:00
|
|
|
|
|
2014-03-22 19:37:15 +00:00
|
|
|
|
public string Container { get; set; }
|
2014-02-26 21:31:47 +00:00
|
|
|
|
|
2014-03-12 20:01:19 +00:00
|
|
|
|
public string MimeType { get; set; }
|
|
|
|
|
|
2014-02-26 21:31:47 +00:00
|
|
|
|
public int PlayState { get; set; }
|
|
|
|
|
|
|
|
|
|
public string StreamUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DlnaHeaders { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Didl { get; set; }
|
|
|
|
|
|
|
|
|
|
public long StartPositionTicks { get; set; }
|
|
|
|
|
}
|
2014-03-14 14:27:32 +00:00
|
|
|
|
}
|