using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Crew dto. /// public class CrewDto { /// /// Gets or sets the billing order. /// [JsonPropertyName("billingOrder")] public string? BillingOrder { get; set; } /// /// Gets or sets the role. /// [JsonPropertyName("role")] public string? Role { get; set; } /// /// Gets or sets the name id. /// [JsonPropertyName("nameId")] public string? NameId { get; set; } /// /// Gets or sets the person id. /// [JsonPropertyName("personId")] public string? PersonId { get; set; } /// /// Gets or sets the name. /// [JsonPropertyName("name")] public string? Name { get; set; } } }