aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-12-28 15:15:03 -0500
committerPatrick Barron <barronpm@gmail.com>2024-01-09 10:16:56 -0500
commitc1a3084312fa4fb7796b83640bfe9ad2b5044afa (patch)
treeb7e81594c3782128d37f875a0ce54d0bad12c6e5 /Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs
parent7eba162879f6d1ff04539cac5c0d6372a955d82b (diff)
Move LiveTv to separate project
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs70
1 files changed, 0 insertions, 70 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs
deleted file mode 100644
index a1ae3ca6d4..0000000000
--- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/ImageDataDto.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-using System.Text.Json.Serialization;
-
-namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
-{
- /// <summary>
- /// Image data dto.
- /// </summary>
- public class ImageDataDto
- {
- /// <summary>
- /// Gets or sets the width.
- /// </summary>
- [JsonPropertyName("width")]
- public string? Width { get; set; }
-
- /// <summary>
- /// Gets or sets the height.
- /// </summary>
- [JsonPropertyName("height")]
- public string? Height { get; set; }
-
- /// <summary>
- /// Gets or sets the uri.
- /// </summary>
- [JsonPropertyName("uri")]
- public string? Uri { get; set; }
-
- /// <summary>
- /// Gets or sets the size.
- /// </summary>
- [JsonPropertyName("size")]
- public string? Size { get; set; }
-
- /// <summary>
- /// Gets or sets the aspect.
- /// </summary>
- [JsonPropertyName("aspect")]
- public string? Aspect { get; set; }
-
- /// <summary>
- /// Gets or sets the category.
- /// </summary>
- [JsonPropertyName("category")]
- public string? Category { get; set; }
-
- /// <summary>
- /// Gets or sets the text.
- /// </summary>
- [JsonPropertyName("text")]
- public string? Text { get; set; }
-
- /// <summary>
- /// Gets or sets the primary.
- /// </summary>
- [JsonPropertyName("primary")]
- public string? Primary { get; set; }
-
- /// <summary>
- /// Gets or sets the tier.
- /// </summary>
- [JsonPropertyName("tier")]
- public string? Tier { get; set; }
-
- /// <summary>
- /// Gets or sets the caption.
- /// </summary>
- [JsonPropertyName("caption")]
- public CaptionDto? Caption { get; set; }
- }
-}