20 lines
682 B
C#
20 lines
682 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CPRNIMS.Infrastructure.Dto.Common;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Canvass.Request
|
|
{
|
|
public class CanvassRequestSearch : PagedRequest
|
|
{
|
|
public string SearchPRNo { get; set; } = string.Empty;
|
|
public string SearchItemName { get; set; } = string.Empty;
|
|
public string SearchItemNo { get; set; } = string.Empty;
|
|
public string SearchCreatedBy { get; set; } = string.Empty;
|
|
public string SearchSupplier { get; set; } = string.Empty;
|
|
public string SearchDepartment { get; set; } = string.Empty;
|
|
}
|
|
}
|