12 lines
295 B
Go
12 lines
295 B
Go
|
package atomfeed
|
||
|
|
||
|
type InlineOtherContent struct {
|
||
|
*CommonAttributes
|
||
|
Type MediaType `xml:"type,attr,omitempty"`
|
||
|
AnyElement []*any `xml:"anyelement,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (i *InlineOtherContent) IsContent() bool { return true }
|
||
|
|
||
|
func (i *InlineOtherContent) Check() error { return nil }
|