mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 17:46:24 +08:00
12 lines
283 B
Dart
12 lines
283 B
Dart
class Subtitle {
|
|
bool? allowSubmit;
|
|
List<dynamic>? list;
|
|
|
|
Subtitle({this.allowSubmit, this.list});
|
|
|
|
factory Subtitle.fromJson(Map<String, dynamic> json) => Subtitle(
|
|
allowSubmit: json['allow_submit'] as bool?,
|
|
list: json['list'] as List<dynamic>?,
|
|
);
|
|
}
|