plugisservice/model/variable.go
2025-07-23 10:56:06 +02:00

11 lines
272 B
Go

package model
import "time"
type Variable struct {
Name string `json:"name"`
VarType string `json:"type,omitempty"`
Value any `json:"value,omitempty"`
Created *time.Time `json:"created,omitempty"`
Updated *time.Time `json:"updated,omitempty"`
}