Files
PiliPlus/lib/models_new/dynamic/dyn_reserve_info/data.dart
2026-04-05 12:11:22 +08:00

19 lines
400 B
Dart

class ReserveInfoData {
int? id;
String? title;
int? livePlanStartTime;
ReserveInfoData({
this.id,
this.title,
this.livePlanStartTime,
});
factory ReserveInfoData.fromJson(Map<String, dynamic> json) =>
ReserveInfoData(
id: json['id'] as int?,
title: json['title'] as String?,
livePlanStartTime: json['live_plan_start_time'] as int?,
);
}