package core type Paginated[T any] struct { Page int `json:"page"` Limit int `json:"limit"` TotalPages int `json:"totalPages"` Items []T `json:"items"` }