Files
lubelog/Models/Report/VehicleHistoryViewModel.cs
2024-01-20 14:30:07 -07:00

13 lines
392 B
C#

namespace CarCareTracker.Models
{
public class VehicleHistoryViewModel
{
public Vehicle VehicleData { get; set; }
public List<GenericReportModel> VehicleHistory { get; set; }
public string Odometer { get; set; }
public string MPG { get; set; }
public decimal TotalCost { get; set; }
public decimal TotalGasCost { get; set; }
}
}