mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-24 13:43:12 +02:00
12 lines
212 B
Go
12 lines
212 B
Go
|
package model
|
||
|
|
||
|
type CategoryBoards struct {
|
||
|
Category
|
||
|
BoardIDs []string `json:"boardIDs"`
|
||
|
}
|
||
|
|
||
|
type BoardCategoryWebsocketData struct {
|
||
|
BoardID string `json:"boardID"`
|
||
|
CategoryID string `json:"categoryID"`
|
||
|
}
|