mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-25 21:05:52 +08:00
20
lib/models_new/fav/fav_pgc/publish.dart
Normal file
20
lib/models_new/fav/fav_pgc/publish.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user