14 lines
356 B
Go
14 lines
356 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Get struct {
|
|
Uuid uuid.UUID `json:"uuid"`
|
|
Path string `json:"path"`
|
|
Query *Query `json:"query,omitempty"`
|
|
Drivers Drivers `json:"driver,omitempty"`
|
|
Type Type `json:"type,omitempty"`
|
|
Value any `json:"value,omitempty"`
|
|
Rights Rights `json:"rights,omitempty"`
|
|
}
|