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