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