package models import "gorm.io/gorm" type ParentSection struct { gorm.Model Name string } type Section struct { gorm.Model Name string ParentSectionID uint ParentSection ParentSection }