18 lines
225 B
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
|
|
}
|