···11+package podcastindex
22+33+// These are minimal model stubs used for documentation and future typed decoding.
44+type Podcast struct {
55+ ID int `json:"id"`
66+ Title string `json:"title"`
77+ URL string `json:"url"`
88+}
99+1010+type Episode struct {
1111+ ID int `json:"id"`
1212+ FeedID int `json:"feedId"`
1313+ Title string `json:"title"`
1414+ EnclosureURL string `json:"enclosureUrl"`
1515+}