41608d077d
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
10 lines
257 B
Go
10 lines
257 B
Go
package form
|
|
|
|
// Link represents a sharing link form.
|
|
type Link struct {
|
|
Token string `json:"Token"`
|
|
Password string `json:"Password"`
|
|
Expires int `json:"Expires"`
|
|
CanComment bool `json:"CanComment"`
|
|
CanEdit bool `json:"CanEdit"`
|
|
}
|