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