41 lines
821 B
C#
41 lines
821 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class Osago
|
|
{
|
|
[JsonProperty("date")]
|
|
public double Date { get; set; }
|
|
|
|
[JsonProperty("number")]
|
|
public string Number { get; set; }
|
|
|
|
[JsonProperty("vin")]
|
|
public string Vin { get; set; }
|
|
|
|
[JsonProperty("plateNumber")]
|
|
public string PlateNumber { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty("restrictions")]
|
|
public string Restrictions { get; set; }
|
|
|
|
[JsonProperty("insurant")]
|
|
public string Insurant { get; set; }
|
|
|
|
[JsonProperty("owner")]
|
|
public string Owner { get; set; }
|
|
|
|
[JsonProperty("usageRegion")]
|
|
public string UsageRegion { get; set; }
|
|
}
|
|
}
|