Files
schema/variable.go
T
2026-08-28 18:09:16 +02:00

9 lines
183 B
Go

package schema
type Variable struct {
Name string `json:"name"`
Type string `json:"type"`
Value any `json:"value,omitempty"`
Array *Array `json:"array,omitempty"`
}