9 lines
150 B
Go
9 lines
150 B
Go
package models
|
|
|
|
import "encoding/xml"
|
|
|
|
type SimpleValue struct {
|
|
XMLName xml.Name `xml:"simpleValue"`
|
|
Value string `xml:"value,attr"`
|
|
}
|