using System.ComponentModel.DataAnnotations; namespace Jellyfin.Api.Models.LiveTvDtos; /// /// Set channel mapping dto. /// public class SetChannelMappingDto { /// /// Gets or sets the provider id. /// [Required] public string ProviderId { get; set; } = string.Empty; /// /// Gets or sets the tuner channel id. /// [Required] public string TunerChannelId { get; set; } = string.Empty; /// /// Gets or sets the provider channel id. /// [Required] public string ProviderChannelId { get; set; } = string.Empty; }