package models import ( "encoding/xml" ) type Attribute struct { XMLName xml.Name `xml:"Attribute"` Name string `xml:"Name"` Value string `xml:"Value"` }