Files
motovaultpro/Models/Supply/SupplyUsageHistory.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

12 lines
343 B
C#

namespace MotoVaultPro.Models
{
public class SupplyUsageHistory {
public int Id { get; set; }
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; }
}
}