AutoCatAvalonia/AutoCatCore/Model/Osago.cs
2023-07-19 00:42:11 +03:00

17 lines
441 B
C#

namespace AutoCatCore.Model
{
public class Osago
{
public double Date { get; set; }
public string Number { get; set; }
public string Vin { get; set; }
public string PlateNumber { get; set; }
public string Name { get; set; }
public string Status { get; set; }
public string Restrictions { get; set; }
public string Insurant { get; set; }
public string Owner { get; set; }
public string UsageRegion { get; set; }
}
}