Added import/export functionality for upgrades, service records, and repair records.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-01-09 13:51:39 -07:00
parent 96914b3db4
commit c6774d4be7
9 changed files with 110 additions and 5 deletions

View File

@@ -15,4 +15,12 @@
public string PartialFuelUp { get; set; }
public string IsFillToFull { get; set; }
}
public class ServiceRecordExportModel
{
public string Date { get; set; }
public string Odometer { get; set; }
public string Description { get; set; }
public string Notes { get; set; }
public string Cost { get; set; }
}
}