mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-27 04:26:58 +08:00
11
lib/models_new/video/video_ai_conclusion/part_outline.dart
Normal file
11
lib/models_new/video/video_ai_conclusion/part_outline.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class PartOutline {
|
||||
int? timestamp;
|
||||
String? content;
|
||||
|
||||
PartOutline({this.timestamp, this.content});
|
||||
|
||||
factory PartOutline.fromJson(Map<String, dynamic> json) => PartOutline(
|
||||
timestamp: json['timestamp'] as int?,
|
||||
content: json['content'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user