Files
PiliPlus/lib/models_new/video/video_detail/subtitle.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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