44 lines
911 B
C#
44 lines
911 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleOwnershipPeriod
|
|
{
|
|
[JsonProperty("lastOperation")]
|
|
public string LastOperation { get; set; }
|
|
|
|
[JsonProperty("ownerType")]
|
|
public string OwnerType { get; set; }
|
|
|
|
[JsonProperty("from")]
|
|
public Int64 From { get; set; }
|
|
|
|
[JsonProperty("to")]
|
|
public Int64 To { get; set; }
|
|
|
|
[JsonProperty("region")]
|
|
public string Region { get; set; }
|
|
|
|
[JsonProperty("registrationRegion")]
|
|
public string RegistrationRegion { get; set; }
|
|
|
|
[JsonProperty("locality")]
|
|
public string Locality { get; set; }
|
|
|
|
[JsonProperty("code")]
|
|
public string Code { get; set; }
|
|
|
|
[JsonProperty("street")]
|
|
public string Street { get; set; }
|
|
|
|
[JsonProperty("building")]
|
|
public string Building { get; set; }
|
|
|
|
[JsonProperty("inn")]
|
|
public string Inn { get; set; }
|
|
}
|
|
}
|