mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 11:41:09 +08:00
12 lines
205 B
Dart
12 lines
205 B
Dart
class Publish {
|
|
String? pubTimeShow;
|
|
|
|
Publish({
|
|
this.pubTimeShow,
|
|
});
|
|
|
|
factory Publish.fromJson(Map<String, dynamic> json) => Publish(
|
|
pubTimeShow: json['pub_time_show'] as String?,
|
|
);
|
|
}
|