Files
lubelog/Models/Report/MPGForVehicleByMonth.cs
2024-10-10 10:08:34 -06:00

10 lines
342 B
C#

namespace CarCareTracker.Models
{
public class MPGForVehicleByMonth
{
public List<CostForVehicleByMonth> CostData { get; set; } = new List<CostForVehicleByMonth>();
public List<CostForVehicleByMonth> SortedCostData { get; set; } = new List<CostForVehicleByMonth>();
public string Unit { get; set; }
}
}