mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
15 lines
356 B
Dart
15 lines
356 B
Dart
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?,
|
|
);
|
|
}
|