pop-camarades/models/sections.go

17 lines
255 B
Go

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
}