mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
13 lines
299 B
Go
13 lines
299 B
Go
package crunchyroll
|
|
|
|
// Simulcast contains all information about a simulcast season.
|
|
type Simulcast struct {
|
|
ID string `json:"id"`
|
|
|
|
Localization struct {
|
|
Title string `json:"title"`
|
|
|
|
// appears to be always an empty string.
|
|
Description string `json:"description"`
|
|
} `json:"localization"`
|
|
}
|