11 lines
116 B
Go
11 lines
116 B
Go
|
package db
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type Type struct {
|
||
|
gorm.Model
|
||
|
Name string
|
||
|
Comment string
|
||
|
Color string
|
||
|
}
|