mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 01:26:59 +08:00
14 lines
322 B
Dart
14 lines
322 B
Dart
import 'package:PiliPlus/models_new/live/live_room_info_h5/frame.dart';
|
|
|
|
class Pendants {
|
|
Frame? frame;
|
|
|
|
Pendants({this.frame});
|
|
|
|
factory Pendants.fromJson(Map<String, dynamic> json) => Pendants(
|
|
frame: json['frame'] == null
|
|
? null
|
|
: Frame.fromJson(json['frame'] as Map<String, dynamic>),
|
|
);
|
|
}
|