8 lines
169 B
Go
8 lines
169 B
Go
package models
|
|
|
|
type JsonResponse struct {
|
|
Error bool `json:"error,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
Data string `json:"data,omitempty"`
|
|
}
|