NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Canvass/Request/SearchSupplierRequest.cs
2026-04-21 11:59:21 +08:00

19 lines
544 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 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;
}
}