// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.LiveTv; using global::System; using global::System.Collections.Generic; using MediaBrowser.Model.Dto; /// /// Channel mapping options dto. /// public class ChannelMappingOptionsDto { /// /// Gets or sets list of tuner channels. /// public required IReadOnlyList TunerChannels { get; set; } /// /// Gets or sets list of provider channels. /// public required IReadOnlyList ProviderChannels { get; set; } /// /// Gets or sets list of mappings. /// public IReadOnlyList Mappings { get; set; } = Array.Empty(); /// /// Gets or sets provider name. /// public string? ProviderName { get; set; } }