photoprism/internal/form/new_link.go
Michael Mayer 03ec4b586d Initial commit for folders and moments #154 #260 #331
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-23 20:58:58 +02:00

10 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"`
}