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