mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-22 11:41:09 +08:00
9
lib/models_new/emote/meta.dart
Normal file
9
lib/models_new/emote/meta.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Meta {
|
||||
int? size;
|
||||
|
||||
Meta({this.size});
|
||||
|
||||
factory Meta.fromJson(Map<String, dynamic> json) => Meta(
|
||||
size: json['size'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user