1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00
focalboard/server/model/sharing.go

10 lines
227 B
Go
Raw Normal View History

2021-01-13 01:35:30 +02:00
package model
type Sharing struct {
ID string `json:"id"`
Token string `json:"token"`
Enabled bool `json:"enabled"`
ModifiedBy string `json:"modifiedBy"`
UpdateAt int64 `json:"update_at,omitempty"`
}