PlaylistItem.cs 299 B

123456789101112131415
  1. using MediaBrowser.Model.Dlna;
  2. namespace Emby.Dlna.PlayTo
  3. {
  4. public class PlaylistItem
  5. {
  6. public string StreamUrl { get; set; }
  7. public string Didl { get; set; }
  8. public StreamInfo StreamInfo { get; set; }
  9. public DeviceProfile Profile { get; set; }
  10. }
  11. }