18 lines
498 B
C#
18 lines
498 B
C#
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleOwnershipPeriod
|
|
{
|
|
public string LastOperation { get; set; }
|
|
public string OwnerType { get; set; }
|
|
public Int64 From { get; set; }
|
|
public Int64 To { get; set; }
|
|
public string Region { get; set; }
|
|
public string RegistrationRegion { get; set; }
|
|
public string Locality { get; set; }
|
|
public string Code { get; set; }
|
|
public string Street { get; set; }
|
|
public string Building { get; set; }
|
|
public string Inn { get; set; }
|
|
}
|
|
}
|