lubelog/Models/GenericRecord.cs
DESKTOP-GENO133\IvanPlex f9a6ddd513 add tags
2024-01-30 18:06:39 -07:00

16 lines
529 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>();
public List<string> Tags { get; set;} = new List<string>();
}
}