using System.Collections.Generic;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Dto;
namespace Jellyfin.Api.Models.LiveTvDtos
{
///
/// Channel mapping options dto.
///
public class ChannelMappingOptionsDto
{
///
/// Gets or sets list of tuner channels.
///
public List TunerChannels { get; set; }
///
/// Gets or sets list of provider channels.
///
public List ProviderChannels { get; set; }
///
/// Gets or sets list of mappings.
///
public NameValuePair[] Mappings { get; set; }
///
/// Gets or sets provider name.
///
public string? ProviderName { get; set; }
}
}