2024-07-25 17:18:03 +03:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Shared.DTOs.Serch
|
|
|
|
|
{
|
2024-07-26 10:30:07 +03:30
|
|
|
|
public class ItemSerachOrder : IFildGlobalItemSerch
|
2024-07-25 17:18:03 +03:30
|
|
|
|
{
|
|
|
|
|
public int? ID { get; set; }
|
|
|
|
|
public StatusOrder? Status { get; set; }
|
2024-07-26 10:30:07 +03:30
|
|
|
|
public int PageIndex { get; set; } = 1;
|
|
|
|
|
public int PageSize { get; set; } = 5;
|
2024-07-25 17:18:03 +03:30
|
|
|
|
}
|
|
|
|
|
}
|