photoprism/tag.go
2018-07-18 15:17:56 +02:00

10 lines
104 B
Go

package photoprism
import (
"github.com/jinzhu/gorm"
)
type Tag struct {
gorm.Model
Label string
}