mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
24 lines
570 B
Dart
24 lines
570 B
Dart
class DynReserveData {
|
|
int? finalBtnStatus;
|
|
int? btnMode;
|
|
int? reserveUpdate;
|
|
String? descUpdate;
|
|
String? toast;
|
|
|
|
DynReserveData({
|
|
this.finalBtnStatus,
|
|
this.btnMode,
|
|
this.reserveUpdate,
|
|
this.descUpdate,
|
|
this.toast,
|
|
});
|
|
|
|
factory DynReserveData.fromJson(Map<String, dynamic> json) => DynReserveData(
|
|
finalBtnStatus: json['final_btn_status'] as int?,
|
|
btnMode: json['btn_mode'] as int?,
|
|
reserveUpdate: json['reserve_update'] as int?,
|
|
descUpdate: json['desc_update'] as String?,
|
|
toast: json['toast'] as String?,
|
|
);
|
|
}
|