mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
21 lines
491 B
Dart
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?,
|
|
);
|
|
}
|