package models import "time" type Collection struct { ID uint `gorm:"primaryKey" json:"id"` Name string `gorm:"not null" json:"name"` CreatedAt time.Time UpdatedAt time.Time }