af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
32 lines
808 B
C#
32 lines
808 B
C#
// <copyright file="SetChannelMappingDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Models.LiveTvDtos;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
/// <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;
|
|
}
|