blt/models/hardware.go

16 lines
186 B
Go

package models
import (
"gorm.io/gorm"
)
type Hardware struct {
gorm.Model
Name string
Type string
Description string
// has many tests
Tests[] Test
}