mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 16:48:16 +08:00
@@ -1,14 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user