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

37 lines
1.4 KiB
C#
Raw Normal View History

2020-06-22 00:12:21 +02:00
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>
2020-06-23 19:48:37 +02:00
[SuppressMessage("Microsoft.Performance", "CA2227:ReadOnlyRemoveSetter", MessageId = "TunerChannels", Justification = "Imported from ServiceStack")]
public List<TunerChannelMapping> TunerChannels { get; set; } = null!;
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets list of provider channels.
/// </summary>
2020-06-23 19:48:37 +02:00
[SuppressMessage("Microsoft.Performance", "CA2227:ReadOnlyRemoveSetter", MessageId = "ProviderChannels", Justification = "Imported from ServiceStack")]
public List<NameIdPair> ProviderChannels { get; set; } = null!;
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets list of mappings.
/// </summary>
2020-06-23 19:48:37 +02:00
[SuppressMessage("Microsoft.Performance", "CA1819:DontReturnArrays", MessageId = "Mappings", Justification = "Imported from ServiceStack")]
public NameValuePair[] Mappings { get; set; } = null!;
2020-06-22 00:12:21 +02:00
/// <summary>
/// Gets or sets provider name.
/// </summary>
public string? ProviderName { get; set; }
}
}