bubble page

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-04-09 20:51:28 +08:00
parent db30aa8041
commit 222c9d01a0
22 changed files with 571 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
import 'package:PiliPlus/models_new/bubble/meta.dart';
class DynList {
String? dynId;
String? title;
Meta? meta;
DynList({
this.dynId,
this.title,
this.meta,
});
factory DynList.fromJson(Map<String, dynamic> json) => DynList(
dynId: json['dyn_id'] as String?,
title: json['title'] as String?,
meta: json['meta'] == null
? null
: Meta.fromJson(json['meta'] as Map<String, dynamic>),
);
}