feat: added pagination to GET /user/invites
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package response
|
||||
|
||||
type Paginated[T any] struct {
|
||||
Count int `json:"count"`
|
||||
Total int `json:"total"`
|
||||
Data []T `json:"data"`
|
||||
}
|
||||
Reference in New Issue
Block a user