Skip to content

Commit

Permalink
Merge pull request #76 from MagicTheGathering/Issue-74
Browse files Browse the repository at this point in the history
Added page and pageSize to the set query parameter
  • Loading branch information
jregnier authored Mar 22, 2022
2 parents 8ab787f + 2fdf62c commit e6a3e5e
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 e6a3e5e

Please sign in to comment.