14 lines
467 B
C#
14 lines
467 B
C#
namespace xModels.Dtos {
|
|
/// <summary>
|
|
/// Request a Page of Data based on Cursor ...
|
|
/// this only be Used in GraphQL ...
|
|
/// </summary>
|
|
public class XPageRequest {
|
|
public int? First { get; set; }
|
|
public int? Last { get; set; }
|
|
public string After { get; set; } = "";
|
|
public string Before { get; set; } = "";
|
|
public string SortBy { get; set; } = "";
|
|
public bool DescendingSort { get; set; }
|
|
}
|
|
} |