feat: WIP connections query endpoint
This commit is contained in:
8
Models/Response/PagedDataResponse.cs
Normal file
8
Models/Response/PagedDataResponse.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace ConnectionsAPI.Models.Response;
|
||||
|
||||
public record PagedDataResponse<T>(
|
||||
int Page,
|
||||
int Count,
|
||||
int MaxCount,
|
||||
ICollection<T> Data
|
||||
);
|
||||
Reference in New Issue
Block a user