package models import "gorm.io/gorm" type List struct { gorm.Model Name string Multi bool } type ListItem struct { gorm.Model Value string Default string ListID uint List List }