Skip to content

Commit

Permalink
remove optional constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezanet committed Jul 1, 2021
1 parent b5f1931 commit 09bf283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/GridifyQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public GridifyQuery()
{
}

public GridifyQuery(string sortBy = default, bool isSortAsc = default, short page = default, int pageSize = default, string filter = default)
public GridifyQuery(string sortBy, bool isSortAsc, short page, int pageSize, string filter)
{
SortBy = sortBy;
IsSortAsc = isSortAsc;
Expand Down

0 comments on commit 09bf283

Please sign in to comment.