32 lines
773 B
C#
32 lines
773 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.People
|
|
{
|
|
public class TvRole
|
|
{
|
|
[JsonProperty("character")]
|
|
public string Character { get; set; }
|
|
|
|
[JsonProperty("credit_id")]
|
|
public string CreditId { get; set; }
|
|
|
|
[JsonProperty("episode_count")]
|
|
public int EpisodeCount { get; set; }
|
|
|
|
[JsonProperty("first_air_date")]
|
|
public DateTime? FirstAirDate { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("original_name")]
|
|
public string OriginalName { get; set; }
|
|
|
|
[JsonProperty("poster_path")]
|
|
public string PosterPath { get; set; }
|
|
}
|
|
} |