mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 12:10:33 +08:00
26
lib/models_new/bubble/tribee_info.dart
Normal file
26
lib/models_new/bubble/tribee_info.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
class TribeInfo {
|
||||
String? id;
|
||||
String? title;
|
||||
String? subTitle;
|
||||
String? faceUrl;
|
||||
String? jumpUri;
|
||||
String? summary;
|
||||
|
||||
TribeInfo({
|
||||
this.id,
|
||||
this.title,
|
||||
this.subTitle,
|
||||
this.faceUrl,
|
||||
this.jumpUri,
|
||||
this.summary,
|
||||
});
|
||||
|
||||
factory TribeInfo.fromJson(Map<String, dynamic> json) => TribeInfo(
|
||||
id: json['id'] as String?,
|
||||
title: json['title'] as String?,
|
||||
subTitle: json['sub_title'] as String?,
|
||||
faceUrl: json['face_url'] as String?,
|
||||
jumpUri: json['jump_uri'] as String?,
|
||||
summary: json['summary'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user