mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
8 lines
202 B
Go
8 lines
202 B
Go
package form
|
|
|
|
// ImportOptions holds import path and album assignment flags.
|
|
type ImportOptions struct {
|
|
Albums []string `json:"albums"`
|
|
Path string `json:"path"`
|
|
Move bool `json:"move"`
|
|
}
|