Files
lubelog/Models/Report/CostForVehicleByMonth.cs
DESKTOP-T0O5CDB\DESK-555BD f696030ac2 fixed month order in reports page.
2024-01-11 18:58:00 -07:00

10 lines
219 B
C#

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