Files
tecamino-dbm/models/jsonResponse.go
2025-04-23 21:53:01 +02:00

11 lines
291 B
Go

package models
type JsonResponse struct {
Error *bool `json:"error,omitempty"`
Message string `json:"message,omitempty"`
Data string `json:"data,omitempty"`
Event string `json:"event,omitempty"`
Path string `json:"path,omitempty"`
Value any `json:"value,omitempty"`
}