using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Cast dto. /// public class CastDto { /// /// 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; } /// /// Gets or sets the character name. /// [JsonPropertyName("characterName")] public string? CharacterName { get; set; } } }