using Newtonsoft.Json; namespace TMDbLib.Objects.General { public class Genre { [JsonProperty("id")] public int Id { get; set; } [JsonProperty("name")] public string Name { get; set; } } }