35 lines
835 B
C#
35 lines
835 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.People
|
|
{
|
|
public class MovieJob
|
|
{
|
|
[JsonProperty("adult")]
|
|
public bool Adult { get; set; }
|
|
|
|
[JsonProperty("credit_id")]
|
|
public string CreditId { get; set; }
|
|
|
|
[JsonProperty("department")]
|
|
public string Department { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("job")]
|
|
public string Job { get; set; }
|
|
|
|
[JsonProperty("original_title")]
|
|
public string OriginalTitle { get; set; }
|
|
|
|
[JsonProperty("poster_path")]
|
|
public string PosterPath { get; set; }
|
|
|
|
[JsonProperty("release_date")]
|
|
public DateTime? ReleaseDate { get; set; }
|
|
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
}
|
|
} |