mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 18:36:38 -06:00
12 lines
576 B
C#
12 lines
576 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class ReportViewModel
|
|
{
|
|
public List<CostForVehicleByMonth> CostForVehicleByMonth { get; set; } = new List<CostForVehicleByMonth>();
|
|
public CostMakeUpForVehicle CostMakeUpForVehicle { get; set; } = new CostMakeUpForVehicle();
|
|
public ReminderMakeUpForVehicle ReminderMakeUpForVehicle { get; set; } = new ReminderMakeUpForVehicle();
|
|
public List<int> Years { get; set; } = new List<int>();
|
|
public List<UserCollaborator> Collaborators { get; set; } = new List<UserCollaborator>();
|
|
}
|
|
}
|