mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
13
lib/models_new/bubble/basic_info.dart
Normal file
13
lib/models_new/bubble/basic_info.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class BasicInfo {
|
||||
String? icon;
|
||||
String? title;
|
||||
String? jumpUri;
|
||||
|
||||
BasicInfo({this.icon, this.title, this.jumpUri});
|
||||
|
||||
factory BasicInfo.fromJson(Map<String, dynamic> json) => BasicInfo(
|
||||
icon: json['icon'] as String?,
|
||||
title: json['title'] as String?,
|
||||
jumpUri: json['jump_uri'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user