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

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; }
}
}