mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
12 lines
243 B
Dart
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?,
|
|
);
|
|
}
|