9 lines
191 B
Go
9 lines
191 B
Go
package models
|
|
|
|
type Set struct {
|
|
Path string `json:"path"`
|
|
Driver *Driver `json:"driver,omitempty"`
|
|
Value any `json:"value,omitempty"`
|
|
Create bool `json:"create,omitempty"`
|
|
}
|