33 lines
748 B
C#
33 lines
748 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Linq.Expressions;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.DTOs.Serch
|
|||
|
{
|
|||
|
public class FilterItem
|
|||
|
{
|
|||
|
public string Oper { get; set; }
|
|||
|
public string PropertyName { get; set; }
|
|||
|
public string Value { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class GridDataProviderRequestDto
|
|||
|
{
|
|||
|
// public CancellationToken CancellationToken { get; init; }
|
|||
|
|
|||
|
public IEnumerable<FilterItem> Filters { get; init; }
|
|||
|
|
|||
|
public int PageNumber { get; init; }
|
|||
|
|
|||
|
public int PageSize { get; init; }
|
|||
|
|
|||
|
//public string sortString { get; init; }
|
|||
|
//public string SortDirection { get; init; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|