mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 01:56:47 +08:00
12 lines
257 B
Dart
12 lines
257 B
Dart
class HighlightIneffectiveHd {
|
|
String? typeUrl;
|
|
|
|
HighlightIneffectiveHd({this.typeUrl});
|
|
|
|
factory HighlightIneffectiveHd.fromJson(Map<String, dynamic> json) {
|
|
return HighlightIneffectiveHd(
|
|
typeUrl: json['type_url'] as String?,
|
|
);
|
|
}
|
|
}
|