mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 00:28:18 +08:00
11
lib/models_new/video/video_detail/subtitle.dart
Normal file
11
lib/models_new/video/video_detail/subtitle.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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>?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user