11 lines
156 B
Go
11 lines
156 B
Go
package photoprism
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
type Album struct {
|
|
gorm.Model
|
|
Name string
|
|
Photos []Photo `gorm:"many2many:album_photos;"`
|
|
}
|