Files
2023-08-05 12:33:28 -04:00

12 lines
325 B
C#

namespace HardwareSupplies
{
public class HardwareItem
{
public long id { get; set; }
public string name { get; set; }
public string category { get; set; }
public int quantity { get; set; }
public decimal cost { get; set; }
public decimal price { get; set; }
}
}