12 lines
212 B
Go
12 lines
212 B
Go
package models
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type InterfaceAsPlainText struct {
|
|
XMLName xml.Name `xml:"InterfaceAsPlainText"`
|
|
Xmlns string `xml:"xmlns,attr"`
|
|
Text string `xml:",chardata"`
|
|
}
|