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