Skip to content

Commit

Permalink
Added page and pageSize to the set query parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jregnier committed Mar 22, 2022
1 parent 8ab787f commit 2fdf62c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/MtgApiManager.Lib/Service/SetQueryParameter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,17 @@ public class SetQueryParameter : IQueryParameter
/// </summary>
[JsonPropertyName("name")]
public string Name { get; set; }

/// <summary>
/// Gets or sets the page number.
/// </summary>
[JsonPropertyName("page")]
public int Page { get; set; }

/// <summary>
/// Gets or sets the page size.
/// </summary>
[JsonPropertyName("pageSize")]
public int PageSize { get; set; }
}
}

0 comments on commit 2fdf62c

Please sign in to comment.