mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
28 lines
746 B
C#
28 lines
746 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace Jellyfin.Api.Models.LiveTvDtos
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Set channel mapping dto.
|
|||
|
/// </summary>
|
|||
|
public class SetChannelMappingDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the provider id.
|
|||
|
/// </summary>
|
|||
|
[Required]
|
|||
|
public string ProviderId { get; set; } = string.Empty;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the tuner channel id.
|
|||
|
/// </summary>
|
|||
|
[Required]
|
|||
|
public string TunerChannelId { get; set; } = string.Empty;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the provider channel id.
|
|||
|
/// </summary>
|
|||
|
[Required]
|
|||
|
public string ProviderChannelId { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|