added supply usage history

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-17 17:07:31 -07:00
parent 95c8cd19f8
commit 802c7923d5
6 changed files with 41 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
namespace CarCareTracker.Models
{
public class SupplyUsageHistory {
public DateTime Date { get; set; }
public string Description { get; set; }
public decimal Quantity { get; set; }
public decimal Cost { get; set; }
}
}