OpenLiveStreamDto.cs 637 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using MediaBrowser.Model.Dlna;
  4. using MediaBrowser.Model.MediaInfo;
  5. namespace Jellyfin.Api.Models.MediaInfoDtos
  6. {
  7. /// <summary>
  8. /// Open live stream dto.
  9. /// </summary>
  10. public class OpenLiveStreamDto
  11. {
  12. /// <summary>
  13. /// Gets or sets the device profile.
  14. /// </summary>
  15. public DeviceProfile? DeviceProfile { get; set; }
  16. /// <summary>
  17. /// Gets or sets the device play protocols.
  18. /// </summary>
  19. public IReadOnlyList<MediaProtocol> DirectPlayProtocols { get; set; } = Array.Empty<MediaProtocol>();
  20. }
  21. }