mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-24 12:32:40 +08:00
show user follow time show top image title Signed-off-by: dom <githubaccount56556@proton.me>
12 lines
214 B
Dart
12 lines
214 B
Dart
class MedalInfo {
|
|
int? wearingStatus;
|
|
|
|
MedalInfo({
|
|
this.wearingStatus,
|
|
});
|
|
|
|
factory MedalInfo.fromJson(Map<String, dynamic> json) => MedalInfo(
|
|
wearingStatus: json['wearing_status'] as int?,
|
|
);
|
|
}
|