20 lines
565 B
C#
20 lines
565 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Inventory.Request
|
|
{
|
|
public class RISPagedRequest
|
|
{
|
|
public string? SearchRISNo { get; set; }
|
|
public string? SearchItemName { get; set; }
|
|
public string? SearchIssuedTo { get; set; }
|
|
public string? Discipline { get; set; }
|
|
public short? Status { get; set; }
|
|
public int PageNumber { get; set; } = 1;
|
|
public int PageSize { get; set; } = 12;
|
|
}
|
|
}
|