feat: Implement Query endpoint for Connections puzzles

This commit is contained in:
2024-12-27 09:45:53 +01:00
parent 82733693f1
commit 70ee4e076e
7 changed files with 66 additions and 118 deletions

View File

@@ -4,4 +4,7 @@ public class QueryPuzzlesRequest
{
[QueryParam] public int Page { get; set; }
[QueryParam] public int Count { get; set; }
[QueryParam] public int? Year { get; set; }
[QueryParam] public int? Month { get; set; }
}