using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace AutoCatCore.Model { public class VehicleName { [JsonProperty("original")] public string Original { get; set; } [JsonProperty("normalized")] public string Normalized { get; set; } } }