mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
12 lines
228 B
Dart
12 lines
228 B
Dart
class Order {
|
|
String? title;
|
|
String? value;
|
|
|
|
Order({this.title, this.value});
|
|
|
|
factory Order.fromJson(Map<String, dynamic> json) => Order(
|
|
title: json['title'] as String?,
|
|
value: json['value'] as String?,
|
|
);
|
|
}
|