This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-03 21:53:43 -07:00
parent 97c613b52a
commit 9102e1ab81
7 changed files with 85 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
namespace CarCareTracker.Models
{
public class GasCostForVehicleByMonth
{
public string MonthName { get; set; }
public decimal Cost { get; set; }
}
}