2021-05-07 12:43:50 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-01-22 20:00:07 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
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
|
|
|
}
|