namespace MotoVaultPro.Models { public class VehicleRecords { public List ServiceRecords { get; set; } = new List(); public List UpgradeRecords { get; set; } = new List(); public List GasRecords { get; set; } = new List(); public List TaxRecords { get; set; } = new List(); public List OdometerRecords { get; set; } = new List(); } }