mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-24 20:35:50 +08:00
19 lines
400 B
Dart
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?,
|
|
);
|
|
}
|