14 lines
224 B
C#
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; }
|
|
}
|
|
}
|