using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Canvass.Request { public class SearchSupplierRequest { public long PRDetailsId { get; set; } public long PRNo { get; set; } public long ItemNo { get; set; } public string ItemName { get; set; } = string.Empty; public string ItemDescription { get; set; } = string.Empty; public string FullName { get; set; } = string.Empty; } }