mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
17
lib/models/space_archive/three_point.dart
Normal file
17
lib/models/space_archive/three_point.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
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'];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user