Files
lubelog/Models/Report/CostForVehicleByMonth.cs
DESKTOP-T0O5CDB\DESK-555BD e3bf6f03d7 Make charts responsive to params.
2024-01-10 14:04:37 -07:00

9 lines
178 B
C#

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