Files
lubelog/Models/Report/CostForVehicleByMonth.cs
DESKTOP-T0O5CDB\DESK-555BD 04f90ae6a8 Added Distance Traveled Chart
2024-02-16 13:55:22 -07:00

13 lines
357 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 MaxMileage { get; set; }
public int MinMileage { get; set; }
public int DistanceTraveled { get; set; }
}
}