mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
12 lines
176 B
Dart
12 lines
176 B
Dart
class UserProgress {
|
|
UserProgress({
|
|
this.lastEpId,
|
|
});
|
|
|
|
int? lastEpId;
|
|
|
|
UserProgress.fromJson(Map<String, dynamic> json) {
|
|
lastEpId = json['last_ep_id'];
|
|
}
|
|
}
|