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

11 lines
299 B
C#

namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class Supplier
{
public string supplierName { get; set; }
public string supplierGender { get; set; }
public string supplierEmail { get; set; }
public string supplierPhoneNo { get; set; }
}
}