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