mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
12 lines
248 B
Dart
12 lines
248 B
Dart
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?,
|
|
);
|
|
}
|