2019-01-13 19:54:44 +00:00
|
|
|
using MediaBrowser.Model.Dlna;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
namespace Emby.Dlna.PlayTo
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
public class PlaylistItem
|
|
|
|
{
|
|
|
|
public string StreamUrl { get; set; }
|
|
|
|
|
|
|
|
public string Didl { get; set; }
|
|
|
|
|
|
|
|
public StreamInfo StreamInfo { get; set; }
|
|
|
|
|
|
|
|
public DeviceProfile Profile { get; set; }
|
|
|
|
}
|
2019-01-13 19:29:23 +00:00
|
|
|
}
|