7 lines
132 B
Go
7 lines
132 B
Go
package response
|
|
|
|
type PageResponse[T any] struct {
|
|
Items []T `json:"items,omitempty"`
|
|
Total uint64 `json:"total,omitempty"`
|
|
}
|