mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-01 07:39:47 +08:00
show medal wall
show user follow time show top image title Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
11
lib/models_new/live/live_medal_wall/medal_info.dart
Normal file
11
lib/models_new/live/live_medal_wall/medal_info.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class MedalInfo {
|
||||
int? wearingStatus;
|
||||
|
||||
MedalInfo({
|
||||
this.wearingStatus,
|
||||
});
|
||||
|
||||
factory MedalInfo.fromJson(Map<String, dynamic> json) => MedalInfo(
|
||||
wearingStatus: json['wearing_status'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user