17 lines
441 B
C#
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; }
|
|
}
|
|
}
|