package models import ( "gorm.io/gorm" ) type Component struct { gorm.Model Name string Manufacturer string Type string }