blt/models/hardware.go

18 lines
213 B
Go
Raw Permalink Normal View History

package models
import (
"gorm.io/gorm"
)
type Hardware struct {
gorm.Model
2023-12-02 22:16:16 -05:00
Name string
Type string
// has many tests
Tests []Test
// has many results
Results []Result
}