Files
lubelog/Models/Report/GasCostForVehicleByMonth.cs
DESKTOP-GENO133\IvanPlex 9102e1ab81 charts
2024-01-03 21:53:43 -07:00

9 lines
181 B
C#

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