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

11 lines
259 B
Go

package models
type Subscribe struct {
Path string `json:"path"`
Depth int `json:"depth"`
Driver *string `json:"driver,omitempty"`
OnCreate bool `json:"onCreate"`
OnDelete bool `json:"onDelete"`
OnChange bool `json:"onChange"`
}