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