mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-24 08:22:29 +02:00
10 lines
227 B
Go
10 lines
227 B
Go
|
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"`
|
||
|
}
|