namespace CarCareTracker.Models { /// /// Generic Model used for vehicle history report. /// public class GenericReportModel { public ImportMode DataType { get; set; } public DateTime Date { get; set; } public int Odometer { get; set; } public string Description { get; set; } public string Notes { get; set; } public decimal Cost { get; set; } public List Files { get; set; } = new List(); public List ExtraFields { get; set; } = new List(); public List RequisitionHistory { get; set; } = new List(); } }