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