22 lines
552 B
C#
22 lines
552 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TMDbLib.Objects.General
|
|
{
|
|
public class AlternativeTitle
|
|
{
|
|
/// <summary>
|
|
/// A country code, e.g. US
|
|
/// </summary>
|
|
[JsonProperty("iso_3166_1")]
|
|
public string Iso_3166_1 { get; set; }
|
|
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// The type of title (e.g. working title, DVD title, modern title)
|
|
/// </summary>
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
}
|
|
} |