mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
11
lib/models_new/space/space_archive/history.dart
Normal file
11
lib/models_new/space/space_archive/history.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class History {
|
||||
int? progress;
|
||||
int? duration;
|
||||
|
||||
History({this.progress, this.duration});
|
||||
|
||||
factory History.fromJson(Map<String, dynamic> json) => History(
|
||||
progress: json['progress'] as int?,
|
||||
duration: json['duration'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user