NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Canvass/Request/SupplierRequest.cs
2026-05-05 13:03:52 +08:00

27 lines
1017 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Canvass.Request
{
public class SupplierRequest
{
public string SupplierName { get; set; } = string.Empty;
public string EmailAddress { get; set; } = string.Empty;
public bool IsActive { get; set; } = true;
public string ContactNo { get; set; } = string.Empty;
public string ContactPerson { get; set; } = string.Empty;
public string LeadTime { get; set; } = string.Empty;
public bool IsVatable { get; set; } = false;
public byte PaymentTermsId { get; set; } = 1;
public byte CurrencyId { get; set; } = 1;
public string TinNo { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public long ItemNo { get; set; } = 0;
public string Website { get; set; } = string.Empty;
public int SupplierId { get; set; }
}
}