11 lines
309 B
C#
11 lines
309 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class SupplyUsageHistory {
|
|
public DateTime Date { get; set; }
|
|
public string PartNumber { get; set; }
|
|
public string Description { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
public decimal Cost { get; set; }
|
|
}
|
|
}
|