simplified design.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2025-01-12 15:26:08 -07:00
parent f86acf673a
commit 552b7a6356
4 changed files with 13 additions and 17 deletions

View File

@@ -3,6 +3,6 @@
public class StickerViewModel
{
public Vehicle VehicleData { get; set; } = new Vehicle();
public VehicleRecords VehicleRecords { get; set; } = new VehicleRecords();
public List<ReminderRecord> ReminderRecords { get; set; } = new List<ReminderRecord>();
}
}

View File

@@ -8,9 +8,5 @@
public List<GasRecord> GasRecords { get; set; } = new List<GasRecord>();
public List<TaxRecord> TaxRecords { get; set; } = new List<TaxRecord>();
public List<OdometerRecord> OdometerRecords { get; set; } = new List<OdometerRecord>();
public List<ReminderRecord> ReminderRecords { get; set; } = new List<ReminderRecord>();
public List<PlanRecord> PlanRecords { get; set; } = new List<PlanRecord>();
public List<Note> NoteRecords { get; set; } = new List<Note>();
public List<SupplyRecord> SupplyRecords { get; set; } = new List<SupplyRecord>();
}
}