PSTW_CentralizeSystem/Areas/Inventory/Models/Product.cs
2024-11-22 14:23:30 +08:00

13 lines
381 B
C#

namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class Product
{
public string productName { get; set; }
public string manufacturer { get; set; }
public string category { get; set; }
public string modelNo { get; set; }
public int quantityProduct { get; set; }
public string imageProduct { get; set; }
}
}