AutoCatUwp/AutoCatCore/Model/VehicleBrand.cs

17 lines
285 B
C#

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