mirror of
https://github.com/fleetdm/fleet
synced 2026-05-09 18:20:48 +00:00
8 lines
244 B
Go
8 lines
244 B
Go
|
|
package oval_input
|
||
|
|
|
||
|
|
// https://oval.mitre.org/language/version5.10.1/ovaldefinition/documentation/independent-definitions-schema.html#variable_object
|
||
|
|
type VariableObjectXML struct {
|
||
|
|
Id string `xml:"id,attr"`
|
||
|
|
RefID string `xml:"var_ref"`
|
||
|
|
}
|