podcast/textinput.go

13 lines
291 B
Go

package podcast
import "encoding/xml"
// TextInput represents text inputs.
type TextInput struct {
XMLName xml.Name `xml:"textInput"`
Title string `xml:"title"`
Description string `xml:"description"`
Name string `xml:"name"`
Link string `xml:"link"`
}