PlaylistItem.cs 348 B

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