using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.MediaInfo;
namespace Jellyfin.Api.Models.MediaInfoDtos
{
///
/// Open live stream dto.
///
public class OpenLiveStreamDto
{
///
/// Gets or sets the device profile.
///
public DeviceProfile? DeviceProfile { get; set; }
///
/// Gets or sets the device play protocols.
///
public IReadOnlyList DirectPlayProtocols { get; set; } = Array.Empty();
}
}