mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
11
lib/models_new/bubble/sort_item.dart
Normal file
11
lib/models_new/bubble/sort_item.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user