PlaylistItem.cs 329 B

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