jellyfin/Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs

35 lines
1,016 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2020-06-23 19:48:37 +02:00
using System.Diagnostics.CodeAnalysis;
2020-06-22 00:12:21 +02:00
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>
required public IReadOnlyList<TunerChannelMapping> TunerChannels { get; set; }
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets list of provider channels.
/// </summary>
required public IReadOnlyList<NameIdPair> ProviderChannels { get; set; }
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets list of mappings.
/// </summary>
public IReadOnlyList<NameValuePair> Mappings { get; set; } = Array.Empty<NameValuePair>();
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets provider name.
/// </summary>
public string? ProviderName { get; set; }
}
}