mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
12 lines
240 B
Dart
12 lines
240 B
Dart
class HistoryTab {
|
|
String? type;
|
|
String? name;
|
|
|
|
HistoryTab({this.type, this.name});
|
|
|
|
factory HistoryTab.fromJson(Map<String, dynamic> json) => HistoryTab(
|
|
type: json['type'] as String?,
|
|
name: json['name'] as String?,
|
|
);
|
|
}
|