Files
lubelog/Models/Report/CostForVehicleByMonth.cs
DESKTOP-GENO133\IvanPlex 4dc896084e odometer input in decimal form.
2024-03-25 07:03:16 -06:00

11 lines
273 B
C#

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