27 lines
855 B
C#
27 lines
855 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Canvass.Response
|
|
{
|
|
public class SupplierResponseDto
|
|
{
|
|
[Key]
|
|
public int SupplierId { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? ContactNo { get; set; }
|
|
public string? ContactPerson { get; set; }
|
|
public string? LeadTime { get; set; }
|
|
public bool VatInc { get; set; }
|
|
public string? Currency { get; set; }
|
|
public string? PaymentTerms { get; set; }
|
|
public byte PaymentTermsId { get; set; }
|
|
public byte CurrencyId { get; set; }
|
|
public string? TinNo { get; set; }
|
|
}
|
|
}
|