mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
16 lines
330 B
Dart
16 lines
330 B
Dart
class UserProgress {
|
|
UserProgress({
|
|
this.lastEpId,
|
|
this.lastEpIndex,
|
|
this.lastTime,
|
|
});
|
|
int? lastEpId;
|
|
String? lastEpIndex;
|
|
int? lastTime;
|
|
UserProgress.fromJson(Map<String, dynamic> json) {
|
|
lastEpId = json['last_ep_id'];
|
|
lastEpIndex = json['last_ep_index'];
|
|
lastTime = json['last_time'];
|
|
}
|
|
}
|