mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
11 lines
313 B
Go
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"`
|
|
}
|