blt/models/hardware.go

16 lines
186 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
Description string
2023-12-02 22:16:16 -05:00
// has many tests
Tests[] Test
}