9 lines
178 B
C#
9 lines
178 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class CostForVehicleByMonth
|
|
{
|
|
public string MonthName { get; set; }
|
|
public decimal Cost { get; set; }
|
|
}
|
|
}
|