mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
27 lines
643 B
Dart
27 lines
643 B
Dart
class ReplyControl {
|
|
int? maxLine;
|
|
String? timeDesc;
|
|
String? bizScene;
|
|
String? location;
|
|
bool? isNoteV2;
|
|
int? translationSwitch;
|
|
|
|
ReplyControl({
|
|
this.maxLine,
|
|
this.timeDesc,
|
|
this.bizScene,
|
|
this.location,
|
|
this.isNoteV2,
|
|
this.translationSwitch,
|
|
});
|
|
|
|
factory ReplyControl.fromJson(Map<String, dynamic> json) => ReplyControl(
|
|
maxLine: json['max_line'] as int?,
|
|
timeDesc: json['time_desc'] as String?,
|
|
bizScene: json['biz_scene'] as String?,
|
|
location: json['location'] as String?,
|
|
isNoteV2: json['is_note_v2'] as bool?,
|
|
translationSwitch: json['translation_switch'] as int?,
|
|
);
|
|
}
|