12 lines
342 B
Go
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"`
|
|
}
|