added sold and purchased date to vehicle.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-29 17:20:03 -07:00
parent 6993fe5df8
commit 3d3aa23a65
8 changed files with 36 additions and 5 deletions

View File

@@ -8,6 +8,8 @@
public string Make { get; set; }
public string Model { get; set; }
public string LicensePlate { get; set; }
public string PurchaseDate { get; set; }
public string SoldDate { get; set; }
public bool IsElectric { get; set; } = false;
public bool UseHours { get; set; } = false;
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();