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