jellyfin/Emby.Dlna/PlayTo/PlaylistItem.cs

20 lines
348 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using MediaBrowser.Model.Dlna;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.PlayTo
2016-10-30 00:22:20 +02:00
{
public class PlaylistItem
{
public string StreamUrl { get; set; }
public string Didl { get; set; }
public StreamInfo StreamInfo { get; set; }
public DeviceProfile Profile { get; set; }
}
}