10 lines
279 B
Go
10 lines
279 B
Go
package models
|
|
|
|
type Values struct {
|
|
Stagelights []Value `json:"stageLights,omitempty"`
|
|
LightBar []Value `json:"lightBar,omitempty"`
|
|
FloogLights []Value `json:"floodLights,omitempty"`
|
|
MovingHead []Value `json:"movingHead,omitempty"`
|
|
Value any `json:"value"`
|
|
}
|