11 lines
166 B
Go
11 lines
166 B
Go
package models
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type Attributes struct {
|
|
XMLName xml.Name `xml:"Attributes"`
|
|
Attribute []*Attribute `xml:"Attribute"`
|
|
}
|