12 lines
180 B
Go
12 lines
180 B
Go
package models
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type Attribute struct {
|
|
XMLName xml.Name `xml:"Attribute"`
|
|
Name string `xml:"Name"`
|
|
Value string `xml:"Value"`
|
|
}
|