mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 13:55:54 +08:00
12 lines
175 B
Dart
12 lines
175 B
Dart
class Season {
|
|
String? title;
|
|
|
|
Season({
|
|
this.title,
|
|
});
|
|
|
|
factory Season.fromJson(Map<String, dynamic> json) => Season(
|
|
title: json['title'] as String?,
|
|
);
|
|
}
|