photoprism/internal/form/new_link.go
Michael Mayer a8c48ab40e Initial API and entities for link sharing
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-08 13:24:06 +02:00

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