mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 18:36:38 -06:00
17 lines
529 B
C#
17 lines
529 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
/// <summary>
|
|
/// Generic Model used for vehicle history report.
|
|
/// </summary>
|
|
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<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
|
|
}
|
|
}
|