jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

17 lines
351 B
C#
Raw Normal View History

2014-04-01 15:23:07 -07:00
using MediaBrowser.Model.Dlna;
2014-02-26 19:44:00 -07:00
2014-02-26 14:31:47 -07: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-17 22:03:01 -07:00
public StreamInfo StreamInfo { get; set; }
2014-04-22 19:47:46 -07:00
public DeviceProfile Profile { get; set; }
2014-02-26 14:31:47 -07:00
}
2014-03-14 07:27:32 -07:00
}