jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

17 lines
351 B
C#
Raw Normal View History

2014-04-01 22:23:07 +00:00
using MediaBrowser.Model.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 int PlayState { get; set; }
public string StreamUrl { get; set; }
public string Didl { get; set; }
2014-04-18 05:03:01 +00:00
public StreamInfo StreamInfo { get; set; }
2014-04-23 02:47:46 +00:00
public DeviceProfile Profile { get; set; }
2014-02-26 21:31:47 +00:00
}
2014-03-14 14:27:32 +00:00
}