17 lines
194 B
Go
17 lines
194 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 bool
|
|
ListID uint
|
|
List List
|
|
}
|