16 lines
182 B
Go
16 lines
182 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type List struct {
|
|
gorm.Model
|
|
Name string
|
|
Multi bool
|
|
}
|
|
|
|
type ListItem struct {
|
|
gorm.Model
|
|
Value string
|
|
Default string
|
|
List List
|
|
}
|