namespace CarCareTracker.Models { public class SupplyRecord { public int Id { get; set; } public int VehicleId { get; set; } /// /// When the part or supplies were purchased. /// public DateTime Date { get; set; } /// /// Part number can be alphanumeric. /// public string PartNumber { get; set; } /// /// Where the part/supplies were purchased from. /// public string PartSupplier { get; set; } /// /// Amount purchased, can be partial quantities such as fluids. /// public decimal Quantity { get; set; } /// /// Description of the part/supplies purchased. /// public string Description { get; set; } /// /// How much it costs /// public decimal Cost { get; set; } /// /// Additional notes. /// public string Notes { get; set; } public List Files { get; set; } = new List(); public List Tags { get; set; } = new List(); public List ExtraFields { get; set; } = new List(); } }