feat(webui): implement state versions list
This commit is contained in:
parent
80958d5b0f
commit
26e10a9399
12 changed files with 195 additions and 10 deletions
14
pkg/model/version.go
Normal file
14
pkg/model/version.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package model
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Version struct {
|
||||
AccountId int
|
||||
Created time.Time
|
||||
Data []byte
|
||||
Id int
|
||||
Lock *string
|
||||
StateId int
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue