Season Data
data class SeasonData(val season: Int, val name: String? = null, val displaySeason: Int? = null)(source)
Parameters
season
To be mapped with episode season, not shown in UI if displaySeason is defined
name
To be shown next to the season like "Season $displaySeason $name" but if displaySeason is null then "$name"
display Season
What to be displayed next to the season name, if null then the name is the only thing shown.