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