using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Canvass.Response { public class SupplierResponse { public int SupplierId { get; set; } public string SupplierName { get; set; } = string.Empty; public string? EmailAddress { get; set; } public bool IsActive { get; set; } public string? ContactNo { get; set; } public string? ContactPerson { get; set; } public string? LeadTime { get; set; } public bool? IsVatable { get; set; } public byte? PaymentTermsId { get; set; } public byte? CurrencyId { get; set; } public string? TinNo { get; set; } public string? Address { get; set; } public string? Website { get; set; } public bool VatInc { get; set; } public string Currency { get; set; }=string.Empty; public string PaymentTerms { get; set; } = string.Empty; } }