17 lines
299 B
C#
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; }
|
|
}
|
|
}
|