package model import "gorm.io/gorm" type Collection struct { gorm.Model Name string User User UserID uint Items []CollectionItem }