mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 23:56:13 +08:00
12 lines
228 B
Dart
12 lines
228 B
Dart
class Stat {
|
|
String? view;
|
|
String? like;
|
|
|
|
Stat({this.view, this.like});
|
|
|
|
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
|
view: json['view'] as String?,
|
|
like: json['like'] as String?,
|
|
);
|
|
}
|