using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Dto.Inventory { public class MRSPagedRequest { public string? SearchMRSNo { get; set; } public string? SearchRISNo { get; set; } public string? SearchItemName { get; set; } public string? SearchReturnedBy { get; set; } public short? Status { get; set; } public string? Condition { get; set; } public int PageNumber { get; set; } = 1; public int PageSize { get; set; } = 12; } }