mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-19 07:05:32 +08:00
9 lines
238 B
Go
9 lines
238 B
Go
package customize
|
|
|
|
// StackSettings represents settings for files that belong to the same photo.
|
|
type StackSettings struct {
|
|
UUID bool `json:"uuid" yaml:"UUID"`
|
|
Meta bool `json:"meta" yaml:"Meta"`
|
|
Name bool `json:"name" yaml:"Name"`
|
|
}
|