mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
33 lines
882 B
C#
33 lines
882 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using MediaBrowser.Controller.LiveTv;
|
|||
|
|
using MediaBrowser.Model.Dto;
|
|||
|
|
|
|||
|
|
namespace Jellyfin.Api.Models.LiveTvDtos
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Channel mapping options dto.
|
|||
|
|
/// </summary>
|
|||
|
|
public class ChannelMappingOptionsDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets list of tuner channels.
|
|||
|
|
/// </summary>
|
|||
|
|
public List<TunerChannelMapping> TunerChannels { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets list of provider channels.
|
|||
|
|
/// </summary>
|
|||
|
|
public List<NameIdPair> ProviderChannels { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets list of mappings.
|
|||
|
|
/// </summary>
|
|||
|
|
public NameValuePair[] Mappings { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets provider name.
|
|||
|
|
/// </summary>
|
|||
|
|
public string? ProviderName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|