mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
15 lines
252 B
Dart
15 lines
252 B
Dart
class Season {
|
|
int? seasonId;
|
|
String? title;
|
|
|
|
Season({
|
|
this.seasonId,
|
|
this.title,
|
|
});
|
|
|
|
factory Season.fromJson(Map<String, dynamic> json) => Season(
|
|
seasonId: json['season_id'] as int?,
|
|
title: json['title'] as String?,
|
|
);
|
|
}
|