mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
Use request body for mapping xml channels
(cherry picked from commit 906ee4f962)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
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;
|
|
}
|
|
} |