13 lines
359 B
Go
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:"-"`
|
|
}
|