mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
15 lines
461 B
C#
15 lines
461 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class GenericRecord
|
|
{
|
|
public int Id { get; set; }
|
|
public int VehicleId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public int Mileage { get; set; }
|
|
public string Description { get; set; }
|
|
public decimal Cost { get; set; }
|
|
public string Notes { get; set; }
|
|
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
|
|
}
|
|
}
|