11 lines
193 B
C#
11 lines
193 B
C#
|
namespace Persistence.Models;
|
|||
|
|
|||
|
public class RequestDto
|
|||
|
{
|
|||
|
public int Skip { get; set; }
|
|||
|
|
|||
|
public int Take { get; set; }
|
|||
|
|
|||
|
public string SortSettings { get; set; } = string.Empty;
|
|||
|
}
|