mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
9 lines
257 B
C#
9 lines
257 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class CostDistanceTableForVehicle
|
|
{
|
|
public string DistanceUnit { get; set; } = "mi.";
|
|
public List<CostForVehicleByMonth> CostData { get; set; } = new List<CostForVehicleByMonth>();
|
|
}
|
|
}
|