mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 10:06:23 +08:00
@@ -1,13 +1,13 @@
|
||||
class Stat {
|
||||
String? like;
|
||||
String? like;
|
||||
|
||||
Stat({this.like});
|
||||
Stat({this.like});
|
||||
|
||||
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
||||
like: json['like'] as String?,
|
||||
);
|
||||
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
||||
like: json['like'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'like': like,
|
||||
};
|
||||
Map<String, dynamic> toJson() => {
|
||||
'like': like,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user