25 lines
923 B
C#
25 lines
923 B
C#
namespace PSTW_CentralSystem.Areas.Inventory.Models
|
|
{
|
|
public class Item
|
|
{
|
|
public string company { get; set; }
|
|
public string Dept { get; set; }
|
|
public string productName { get; set; }
|
|
public string imageProduct { get; set; }
|
|
public string productCategory { get; set; }
|
|
public string serialNumber { get; set; }
|
|
public int quantity { get; set; }
|
|
public string Supplier { get; set; }
|
|
public DateTime purchaseDate { get; set; }
|
|
public string PO { get; set; }
|
|
public string currency { get; set; }
|
|
public float priceInRM { get; set; }
|
|
public float currencyRate { get; set; }
|
|
public float convertPrice { get; set; }
|
|
public DateTime DODate { get; set; }
|
|
public int warranty { get; set; }
|
|
public DateTime EndWDate { get; set; }
|
|
public DateTime invoiceDate { get; set; }
|
|
}
|
|
}
|