add scene save and load in quasar backend
This commit is contained in:
11
backend/models/scenes.go
Normal file
11
backend/models/scenes.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package models
|
||||
|
||||
type Scenes []Scene
|
||||
|
||||
type Scene struct {
|
||||
Name string `json:"name"`
|
||||
Desciption string `json:"description,omitempty"`
|
||||
MovingHead bool `json:"movingHead"`
|
||||
LightBar bool `json:"lightBar"`
|
||||
Values []Value `json:"values,omitempty"`
|
||||
}
|
Reference in New Issue
Block a user