mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
14 lines
285 B
Dart
14 lines
285 B
Dart
class Badge {
|
|
String? text;
|
|
int? bgStyle;
|
|
String? img;
|
|
|
|
Badge({this.text, this.bgStyle, this.img});
|
|
|
|
factory Badge.fromJson(Map<String, dynamic> json) => Badge(
|
|
text: json['text'] as String?,
|
|
bgStyle: json['bg_style'] as int?,
|
|
img: json['img'] as String?,
|
|
);
|
|
}
|