PSTW_CentralizeSystem/Areas/Inventory/Models/SupplierModel.cs
2024-11-25 16:31:24 +08:00

15 lines
444 B
C#

using System.ComponentModel.DataAnnotations;
namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class SupplierModel
{
[Key]
public int SupplierId { get; set; }
public required string SupplierName { get; set; }
public required string SupplierGender { get; set; }
public required string SupplierEmail { get; set; }
public required string SupplierPhoneNo { get; set; }
}
}