AutoCatUwp/AutoCatCore/Model/VehicleName.cs

17 lines
299 B
C#

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; }
}
}