1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-18 09:35:25 +02:00
focalboard/server/model/workspace.go

10 lines
310 B
Go
Raw Normal View History

2021-01-14 02:56:01 +02:00
package model
type Workspace struct {
ID string `json:"id"`
SignupToken string `json:"signupToken"`
Settings map[string]interface{} `json:"settings"`
ModifiedBy string `json:"modifiedBy"`
UpdateAt int64 `json:"updateAt"`
}