Files
PiliPlus/lib/models_new/bubble/tribee_info.dart
dom 222c9d01a0 bubble page
Signed-off-by: dom <githubaccount56556@proton.me>
2026-04-09 21:32:07 +08:00

27 lines
564 B
Dart

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?,
);
}