13 lines
133 B
Go
13 lines
133 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
type Component struct {
|
||
|
gorm.Model
|
||
|
Name string
|
||
|
Manufacturer string
|
||
|
Type string
|
||
|
}
|