added vehicle info API endpoint for dashboards and whatnot.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-08-27 12:04:57 -06:00
parent 3a74116e70
commit ee55f8c884
2 changed files with 67 additions and 0 deletions

12
Models/API/VehicleInfo.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace CarCareTracker.Models
{
public class VehicleInfo
{
public Vehicle VehicleData { get; set; } = new Vehicle();
public int VeryUrgentReminderCount { get; set; }
public int UrgentReminderCount { get; set;}
public int NotUrgentReminderCount { get; set; }
public int PastDueReminderCount { get; set; }
public ReminderExportModel NextReminder { get; set; }
}
}