jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

29 lines
653 B
C#
Raw Normal View History

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; }
public string MediaSourceId { get; set; }
2014-02-26 21:31:47 +00:00
public bool Transcode { get; set; }
public DlnaProfileType MediaType { get; set; }
2014-02-26 21:31:47 +00:00
public string FileFormat { get; set; }
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
}