mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 19:51:11 +08:00
11
lib/models_new/history/tab.dart
Normal file
11
lib/models_new/history/tab.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user