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