blt/models/hardware.go

14 lines
154 B
Go

package models
import (
"gorm.io/gorm"
)
type Hardware struct {
gorm.Model
Name string
Type string
SerialNumber string
Description string
}