mirror of
https://github.com/pikami/rss-dl.git
synced 2024-11-25 06:57:36 +00:00
14 lines
266 B
Go
14 lines
266 B
Go
|
package structs
|
||
|
|
||
|
// ItemDetails - Struct for outputing item details summary
|
||
|
type ItemDetails struct {
|
||
|
Title string
|
||
|
Description string
|
||
|
Content string
|
||
|
Link string
|
||
|
Updated string
|
||
|
Published string
|
||
|
GUID string
|
||
|
Categories []string
|
||
|
}
|