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