Files
lubelog/Models/Report/CostForVehicleByMonth.cs
DESKTOP-GENO133\IvanPlex def9a7770f odometer to trips improvement.
2024-03-10 06:33:39 -06:00

11 lines
269 B
C#

namespace CarCareTracker.Models
{
public class CostForVehicleByMonth
{
public int MonthId { get; set; }
public string MonthName { get; set; }
public decimal Cost { get; set; }
public int DistanceTraveled { get; set; }
}
}