mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
10 lines
277 B
Go
10 lines
277 B
Go
package form
|
|
|
|
// Link represents a link sharing form.
|
|
type Link struct {
|
|
Password string `json:"Password"`
|
|
ShareToken string `json:"ShareToken"`
|
|
ShareExpires int `json:"ShareExpires"`
|
|
CanComment bool `json:"CanComment"`
|
|
CanEdit bool `json:"CanEdit"`
|
|
}
|