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