mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-25 19:46:47 +08:00
22 lines
522 B
Dart
22 lines
522 B
Dart
class SearchTrendingItemModel {
|
|
String? keyword;
|
|
String? showName;
|
|
String? icon;
|
|
bool? showLiveIcon;
|
|
|
|
SearchTrendingItemModel({
|
|
this.keyword,
|
|
this.showName,
|
|
this.icon,
|
|
this.showLiveIcon,
|
|
});
|
|
|
|
factory SearchTrendingItemModel.fromJson(Map<String, dynamic> json) =>
|
|
SearchTrendingItemModel(
|
|
keyword: json['keyword'] as String?,
|
|
showName: json['show_name'] as String?,
|
|
icon: json['icon'] as String?,
|
|
showLiveIcon: json['show_live_icon'] as bool?,
|
|
);
|
|
}
|