rmmagent/agent/software/structs.go
2022-06-20 17:00:02 -07:00

12 lines
342 B
Go

package software
type Software struct {
Name string `json:"name"`
Version string `json:"version"`
Publisher string `json:"publisher"`
InstallDate string `json:"install_date"`
Size string `json:"size"`
Source string `json:"source"`
Location string `json:"location"`
Uninstall string `json:"uninstall"`
}