15 lines
545 B
C#
15 lines
545 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class OdometerRecord
|
|
{
|
|
public int Id { get; set; }
|
|
public int VehicleId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public int Mileage { get; set; }
|
|
public string Notes { get; set; }
|
|
public List<string> Tags { get; set; } = new List<string>();
|
|
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
|
|
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
}
|