mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
9 lines
202 B
Go
9 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"`
|
|
}
|