AutoCatUwp/AutoCatCore/Model/VehicleModel.cs

14 lines
224 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace AutoCatCore.Model
{
public class VehicleModel
{
[JsonProperty("name")]
public VehicleName Name { get; set; }
}
}