29 lines
694 B
C#
29 lines
694 B
C#
using Newtonsoft.Json;
|
|
using TMDbLib.Objects.General;
|
|
|
|
namespace TMDbLib.Objects.Credit
|
|
{
|
|
public class Credit
|
|
{
|
|
[JsonProperty("credit_type")]
|
|
public CreditType CreditType { get; set; }
|
|
|
|
[JsonProperty("department")]
|
|
public string Department { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonProperty("job")]
|
|
public string Job { get; set; }
|
|
|
|
[JsonProperty("media")]
|
|
public CreditMedia Media { get; set; }
|
|
|
|
[JsonProperty("media_type")]
|
|
public MediaType MediaType { get; set; }
|
|
|
|
[JsonProperty("person")]
|
|
public CreditPerson Person { get; set; }
|
|
}
|
|
} |