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

12 lines
243 B
Dart

class SortItem {
int? sortType;
String? text;
SortItem({this.sortType, this.text});
factory SortItem.fromJson(Map<String, dynamic> json) => SortItem(
sortType: json['sort_type'] as int?,
text: json['text'] as String?,
);
}