colossus/models/component.go

13 lines
133 B
Go
Raw Normal View History

2022-11-25 15:13:32 -05:00
package models
import (
"gorm.io/gorm"
)
type Component struct {
gorm.Model
Name string
Manufacturer string
Type string
}