23 lines
524 B
C#
23 lines
524 B
C#
using Newtonsoft.Json;
|
|
using TMDbLib.Objects.People;
|
|
|
|
namespace TMDbLib.Objects.TvShows
|
|
{
|
|
public class CreatedBy
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("credit_id")]
|
|
public string CreditId { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("gender")]
|
|
public PersonGender Gender { get; set; }
|
|
|
|
[JsonProperty("profile_path")]
|
|
public string ProfilePath { get; set; }
|
|
}
|
|
} |