...
This commit is contained in:
32
Shared/DTOs/Serch/GridDataProviderResultDto.cs
Normal file
32
Shared/DTOs/Serch/GridDataProviderResultDto.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user