podcast/textinput.go

13 lines
291 B
Go
Raw Permalink Normal View History

2017-02-02 07:42:33 -05:00
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"`
}