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