AutoCatAvalonia/AutoCatCore/Model/VehicleOwnershipPeriod.cs

19 lines
528 B
C#

namespace AutoCatCore.Model
{
public class VehicleOwnershipPeriod
{
public int Id { get; set; }
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; }
}
}