fin-check-api/db/type.go

11 lines
116 B
Go
Raw Normal View History

2024-10-29 11:24:46 +01:00
package db
import "gorm.io/gorm"
type Type struct {
gorm.Model
Name string
Comment string
Color string
}