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

28 lines
661 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.LiveTvDtos;
/// <summary>
/// Set channel mapping dto.
/// </summary>
public class SetChannelMappingDto
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the provider id.
/// </summary>
2023-01-31 12:18:10 +01:00
[Required]
public string ProviderId { get; set; } = string.Empty;
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the tuner channel id.
/// </summary>
[Required]
public string TunerChannelId { get; set; } = string.Empty;
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the provider channel id.
/// </summary>
[Required]
public string ProviderChannelId { get; set; } = string.Empty;
2021-12-24 18:28:27 +01:00
}