MVC (layered variant)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace MVC_SimpleCRUD_Layered.Application.People;
|
||||
|
||||
public class PeopleIndexRequest
|
||||
{
|
||||
public int Page { get; set; } = 1;
|
||||
|
||||
public int PageSize { get; set; }
|
||||
|
||||
public string? Sorts { get; set; }
|
||||
|
||||
public string? SearchText { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user