aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs
deleted file mode 100644
index eaf4a340b..000000000
--- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/DescriptionsProgramDto.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text.Json.Serialization;
-
-namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
-{
- /// <summary>
- /// Descriptions program dto.
- /// </summary>
- public class DescriptionsProgramDto
- {
- /// <summary>
- /// Gets or sets the list of description 100.
- /// </summary>
- [JsonPropertyName("description100")]
- public IReadOnlyList<Description100Dto> Description100 { get; set; } = Array.Empty<Description100Dto>();
-
- /// <summary>
- /// Gets or sets the list of description1000.
- /// </summary>
- [JsonPropertyName("description1000")]
- public IReadOnlyList<Description1000Dto> Description1000 { get; set; } = Array.Empty<Description1000Dto>();
- }
-}