mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
11
lib/models_new/pgc/pgc_timeline/icon_font.dart
Normal file
11
lib/models_new/pgc/pgc_timeline/icon_font.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class IconFont {
|
||||
String? name;
|
||||
String? text;
|
||||
|
||||
IconFont({this.name, this.text});
|
||||
|
||||
factory IconFont.fromJson(Map<String, dynamic> json) => IconFont(
|
||||
name: json['name'] as String?,
|
||||
text: json['text'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user