mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 08:06:21 +08:00
feat: space opus
Closes #833 Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/space_opus/stat.dart
Normal file
13
lib/models/space_opus/stat.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user