Files
PiliPlus/lib/models_new/fav/fav_pgc/publish.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

21 lines
491 B
Dart

class Publish {
String? pubTime;
String? pubTimeShow;
String? releaseDate;
String? releaseDateShow;
Publish({
this.pubTime,
this.pubTimeShow,
this.releaseDate,
this.releaseDateShow,
});
factory Publish.fromJson(Map<String, dynamic> json) => Publish(
pubTime: json['pub_time'] as String?,
pubTimeShow: json['pub_time_show'] as String?,
releaseDate: json['release_date'] as String?,
releaseDateShow: json['release_date_show'] as String?,
);
}