mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
18 lines
267 B
Dart
18 lines
267 B
Dart
class ThreePoint {
|
|
ThreePoint({
|
|
this.type,
|
|
this.icon,
|
|
this.text,
|
|
});
|
|
|
|
String? type;
|
|
String? icon;
|
|
String? text;
|
|
|
|
ThreePoint.fromJson(Map<String, dynamic> json) {
|
|
type = json['type'];
|
|
icon = json['icon'];
|
|
text = json['text'];
|
|
}
|
|
}
|