aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2024-01-17 15:18:15 -0500
committerPatrick Barron <barronpm@gmail.com>2024-02-08 15:20:46 -0500
commit42b052a5a619abf33ceeb4bc4aafcc1d3d52a723 (patch)
tree4b6238af1c4fe34c8ae8ae9c556da45c4552b73e /Jellyfin.Api/Models
parent20f05f8103c2f5447c3d2ebd319c9ad31857d42e (diff)
Add IListingsManager service
Diffstat (limited to 'Jellyfin.Api/Models')
-rw-r--r--Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs b/Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs
deleted file mode 100644
index cbc3548b1..000000000
--- a/Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-using MediaBrowser.Controller.LiveTv;
-using MediaBrowser.Model.Dto;
-
-namespace Jellyfin.Api.Models.LiveTvDtos;
-
-/// <summary>
-/// Channel mapping options dto.
-/// </summary>
-public class ChannelMappingOptionsDto
-{
- /// <summary>
- /// Gets or sets list of tuner channels.
- /// </summary>
- public required IReadOnlyList<TunerChannelMapping> TunerChannels { get; set; }
-
- /// <summary>
- /// Gets or sets list of provider channels.
- /// </summary>
- public required IReadOnlyList<NameIdPair> ProviderChannels { get; set; }
-
- /// <summary>
- /// Gets or sets list of mappings.
- /// </summary>
- public IReadOnlyList<NameValuePair> Mappings { get; set; } = Array.Empty<NameValuePair>();
-
- /// <summary>
- /// Gets or sets provider name.
- /// </summary>
- public string? ProviderName { get; set; }
-}