2025-05-17 11:36:26 -04:00

9 lines
187 B
Go

package bodyGeneric
type CustomResponse[T any] struct {
Success bool `json:"success"`
Status int `json:"status"`
Message string `json:"message"`
Data T `json:"data"`
}