You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
3 years ago
|
#nullable disable
|
||
|
|
||
|
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; }
|
||
|
}
|
||
|
}
|