Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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; }
}
}