Files
motovaultpro/Models/Report/MPGForVehicleByMonth.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

10 lines
340 B
C#

namespace MotoVaultPro.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; }
}
}