feat: added pagination to GET /user/invites

This commit is contained in:
2026-09-01 10:18:08 +02:00
parent 02931d16be
commit 1695a57dbd
5 changed files with 104 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
package response
type Paginated[T any] struct {
Count int `json:"count"`
Total int `json:"total"`
Data []T `json:"data"`
}