13 lines
381 B
C#
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; }
|
|
}
|
|
}
|