blt/models/hardware.go

15 lines
165 B
Go
Raw 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
}