mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-07 03:24:51 +08:00
14
lib/models_new/pgc/pgc_index_condition/order.dart
Normal file
14
lib/models_new/pgc/pgc_index_condition/order.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
class PgcConditionOrder {
|
||||
String? field;
|
||||
String? name;
|
||||
String? sort;
|
||||
|
||||
PgcConditionOrder({this.field, this.name, this.sort});
|
||||
|
||||
factory PgcConditionOrder.fromJson(Map<String, dynamic> json) =>
|
||||
PgcConditionOrder(
|
||||
field: json['field'] as String?,
|
||||
name: json['name'] as String?,
|
||||
sort: json['sort'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user