jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs
2014-04-22 22:47:46 -04:00

17 lines
351 B
C#

using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Dlna.PlayTo
{
public class PlaylistItem
{
public int PlayState { get; set; }
public string StreamUrl { get; set; }
public string Didl { get; set; }
public StreamInfo StreamInfo { get; set; }
public DeviceProfile Profile { get; set; }
}
}