mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
8 lines
188 B
Go
8 lines
188 B
Go
package system
|
|
|
|
// ChassisInfo represents the structural framework of a device, specifying its type and manufacturer information.
|
|
type ChassisInfo struct {
|
|
Type string
|
|
Vendor string
|
|
}
|