aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs
deleted file mode 100644
index f00c9accdd..0000000000
--- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System.Text.Json.Serialization;
-
-namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
-{
- /// <summary>
- /// Crew dto.
- /// </summary>
- public class CrewDto
- {
- /// <summary>
- /// Gets or sets the billing order.
- /// </summary>
- [JsonPropertyName("billingOrder")]
- public string? BillingOrder { get; set; }
-
- /// <summary>
- /// Gets or sets the role.
- /// </summary>
- [JsonPropertyName("role")]
- public string? Role { get; set; }
-
- /// <summary>
- /// Gets or sets the name id.
- /// </summary>
- [JsonPropertyName("nameId")]
- public string? NameId { get; set; }
-
- /// <summary>
- /// Gets or sets the person id.
- /// </summary>
- [JsonPropertyName("personId")]
- public string? PersonId { get; set; }
-
- /// <summary>
- /// Gets or sets the name.
- /// </summary>
- [JsonPropertyName("name")]
- public string? Name { get; set; }
- }
-}