namespace Complex.Application.Common
{
public class CommonRequestDto
{
///
/// فیلد ترتیب
///
public string? SortField { set; get; }
///
/// نحوه ترتیب
///
public SortDirection? sortDirection { set; get; } = SortDirection.asc;
public int Page { set; get; } = 0;
public int Length { set; get; } = 10;
}
public enum SortDirection
{
asc,
desc
}
}