mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
20 lines
499 B
Dart
20 lines
499 B
Dart
class BadgeInfo {
|
|
String? bgColor;
|
|
String? bgColorNight;
|
|
String? text;
|
|
|
|
BadgeInfo({this.bgColor, this.bgColorNight, this.text});
|
|
|
|
factory BadgeInfo.fromJson(Map<String, dynamic> json) => BadgeInfo(
|
|
bgColor: json['bg_color'] as String?,
|
|
bgColorNight: json['bg_color_night'] as String?,
|
|
text: json['text'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'bg_color': bgColor,
|
|
'bg_color_night': bgColorNight,
|
|
'text': text,
|
|
};
|
|
}
|