add purchase and sold price

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-03-27 08:21:02 -06:00
parent 345eb65c3a
commit a92d422972
6 changed files with 55 additions and 11 deletions

View File

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