crunchy-cli/news.go
2022-05-28 19:55:56 +02:00

11 lines
313 B
Go

package crunchyroll
// News contains all information about a news.
type News struct {
Title string `json:"title"`
Link string `json:"link"`
Image string `json:"image"`
Creator string `json:"creator"`
PublishDate string `json:"publish_date"`
Description string `json:"description"`
}