mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 01:26:59 +08:00
14 lines
286 B
Dart
14 lines
286 B
Dart
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?,
|
|
);
|
|
}
|