mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
16 lines
297 B
C#
16 lines
297 B
C#
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace Emby.Dlna.PlayTo
|
|
{
|
|
public class PlaylistItem
|
|
{
|
|
public string StreamUrl { get; set; }
|
|
|
|
public string Didl { get; set; }
|
|
|
|
public StreamInfo StreamInfo { get; set; }
|
|
|
|
public DeviceProfile Profile { get; set; }
|
|
}
|
|
}
|