10 lines
342 B
C#
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; }
|
|
}
|
|
}
|