Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamess-Lucass committed Jan 18, 2024
1 parent 4f7ec95 commit 0383051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Query.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
public record Query
{
public int? Top { get; set; } = 0;
public int? Skip { get; set; } = 0;
public bool? Count { get; set; } = false;
public int? Top { get; set; }
public int? Skip { get; set; }
public bool? Count { get; set; }
public string? OrderBy { get; set; } = string.Empty;
public string? Select { get; set; } = string.Empty;
public string? Search { get; set; } = string.Empty;
Expand Down

0 comments on commit 0383051

Please sign in to comment.