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

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"`
}