jellyfin-server/Jellyfin.Api/Models/MediaInfoDtos/OpenLiveStreamDto.cs

24 lines
637 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2020-08-03 19:33:43 +00:00
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.MediaInfo;
namespace Jellyfin.Api.Models.MediaInfoDtos
{
/// <summary>
/// Open live stream dto.
/// </summary>
public class OpenLiveStreamDto
{
/// <summary>
/// Gets or sets the device profile.
/// </summary>
public DeviceProfile? DeviceProfile { get; set; }
/// <summary>
/// Gets or sets the device play protocols.
/// </summary>
public IReadOnlyList<MediaProtocol> DirectPlayProtocols { get; set; } = Array.Empty<MediaProtocol>();
2020-08-03 19:33:43 +00:00
}
}