Add fuel type dropdown and diesel fuel type.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-08-19 12:09:50 -06:00
parent 897b4f2efe
commit fe76f32778
7 changed files with 17 additions and 6 deletions

View File

@@ -13,6 +13,7 @@
public decimal PurchasePrice { get; set; }
public decimal SoldPrice { get; set; }
public bool IsElectric { get; set; } = false;
public bool IsDiesel { get; set; } = false;
public bool UseHours { get; set; } = false;
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();
public List<string> Tags { get; set; } = new List<string>();