jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CrewDto.cs

41 lines
1 KiB
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
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")]
2021-09-03 18:59:40 +02:00
public string? BillingOrder { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the role.
/// </summary>
[JsonPropertyName("role")]
2021-09-03 18:59:40 +02:00
public string? Role { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the name id.
/// </summary>
[JsonPropertyName("nameId")]
2021-09-03 18:59:40 +02:00
public string? NameId { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the person id.
/// </summary>
[JsonPropertyName("personId")]
2021-09-03 18:59:40 +02:00
public string? PersonId { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the name.
/// </summary>
[JsonPropertyName("name")]
2021-09-03 18:59:40 +02:00
public string? Name { get; set; }
2021-08-29 00:32:50 +02:00
}
}