Files
tecamino-json_data/set.go
Adrian Zürcher 85bd8de2a2 add files
2025-04-25 18:56:27 +02:00

13 lines
359 B
Go

package models
type Set struct {
Path string `json:"path"`
Driver *Driver `json:"driver,omitempty"`
Drivers *Drivers `json:"drivers,omitempty"`
Type *Type `json:"type,omitempty"`
Value any `json:"value,omitempty"`
Rights *Rights `json:"rights,omitempty"`
Create bool `json:"create,omitempty"`
Updated bool `json:"-"`
}