mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 19:14:42 +08:00
15 lines
225 B
Dart
15 lines
225 B
Dart
class Stats {
|
|
int? view;
|
|
int? reply;
|
|
|
|
Stats({
|
|
this.view,
|
|
this.reply,
|
|
});
|
|
|
|
factory Stats.fromJson(Map<String, dynamic> json) => Stats(
|
|
view: json['view'] as int?,
|
|
reply: json['reply'] as int?,
|
|
);
|
|
}
|