Files
PiliPlus/lib/models_new/later/season.dart
bggRGjQaUbCoE 0baf3fcd36 tweaks
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-12-16 15:56:54 +08:00

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?,
);
}