using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace AutoCatCore.Model { public class VehiclePhoto { [JsonProperty("brand")] public string Brand { get; set; } [JsonProperty("model")] public string Model { get; set; } [JsonProperty("date")] public double Date { get; set; } [JsonProperty("url")] public string Url { get; set; } } }