synf-api/internal/api/data/models/device.go
2025-10-10 15:39:29 +02:00

8 lines
183 B
Go

// the models package defines the models for the computer parts and resources that gathered
package models
type Device struct {
Id int `json:"id"`
Name string `json:"name"`
}