mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 19:14:42 +08:00
9
lib/models_new/space/space_opus/stat.dart
Normal file
9
lib/models_new/space/space_opus/stat.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Stat {
|
||||
String? like;
|
||||
|
||||
Stat({this.like});
|
||||
|
||||
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
||||
like: json['like'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user