AutoDispatching/AutoDispathingWork/Dto/PageRequest.cs
2023-11-17 08:40:24 +08:00

10 lines
246 B
C#

namespace WorkerService1.Dto;
public class PageRequest
{
public string Search { get; set; }
public int Page { get; set; }
public int PageSize { get; set; }
public string Sort { get; set; }
public bool IsAsc { get; set; }
}