pop-camarades/models/lists.go

18 lines
225 B
Go

package models
import "gorm.io/gorm"
type List struct {
gorm.Model
Name string
Multi bool
ListItems []*ListItem
}
type ListItem struct {
gorm.Model
Value string
Default bool
ListID uint
List List
}