AutoCatAvalonia/AutoCatCore/Model/Osago.cs

17 lines
451 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; }
}
}