mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-27 12:17:24 +00:00
15 lines
354 B
Go
15 lines
354 B
Go
package model
|
|
|
|
type Response[T any] struct {
|
|
Success bool `json:"success"`
|
|
Data T `json:"data,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|
|
|
|
type PageResponse[T any] struct {
|
|
Success bool `json:"success"`
|
|
TotalPages int `json:"totalPages"`
|
|
Data []T `json:"data"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|