Files
motovaultpro/Models/Shared/VehicleRecords.cs
Eric Gullickson 3d43cddd1f Data model work
2025-08-04 21:15:34 -05:00

12 lines
525 B
C#

namespace MotoVaultPro.Models
{
public class VehicleRecords
{
public List<ServiceRecord> ServiceRecords { get; set; } = new List<ServiceRecord>();
public List<UpgradeRecord> UpgradeRecords { get; set; } = new List<UpgradeRecord>();
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>();
}
}