package model

type Response[T any] struct {
	Code    int                     `json:"-"`
	Success bool                    `json:"success"`
	Result  *T                      `json:"result,omitempty"`
	Error   *map[string]interface{} `json:"error,omitempty"`
}
