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