e7fecd3b27
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
12 lines
341 B
Go
12 lines
341 B
Go
package form
|
|
|
|
// Link represents a link sharing form.
|
|
type Link struct {
|
|
Password string `json:"Password"`
|
|
ShareSlug string `json:"Slug"`
|
|
ShareToken string `json:"Token"`
|
|
ShareExpires int `json:"Expires"`
|
|
MaxViews uint `json:"MaxViews"`
|
|
CanComment bool `json:"CanComment"`
|
|
CanEdit bool `json:"CanEdit"`
|
|
}
|