jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

15 lines
307 B
C#
Raw Normal View History

2014-04-02 00:23:07 +02:00
using MediaBrowser.Model.Dlna;
2014-02-27 03:44:00 +01:00
2014-02-26 22:31:47 +01:00
namespace MediaBrowser.Dlna.PlayTo
{
public class PlaylistItem
{
public string StreamUrl { get; set; }
public string Didl { get; set; }
2014-04-18 07:03:01 +02:00
public StreamInfo StreamInfo { get; set; }
2014-04-23 04:47:46 +02:00
public DeviceProfile Profile { get; set; }
2014-02-26 22:31:47 +01:00
}
2014-03-14 15:27:32 +01:00
}