mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-08-02 08:40:10 +08:00
21
lib/models_new/dynamic/dyn_reaction/item.dart
Normal file
21
lib/models_new/dynamic/dyn_reaction/item.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
class DynReactionItem {
|
||||
String? action;
|
||||
String? face;
|
||||
String? mid;
|
||||
String? name;
|
||||
|
||||
DynReactionItem({
|
||||
this.action,
|
||||
this.face,
|
||||
this.mid,
|
||||
this.name,
|
||||
});
|
||||
|
||||
factory DynReactionItem.fromJson(Map<String, dynamic> json) =>
|
||||
DynReactionItem(
|
||||
action: json['action'] as String?,
|
||||
face: json['face'] as String?,
|
||||
mid: json['mid'] as String?,
|
||||
name: json['name'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user