Files
PiliPlus/lib/models/pgc/pgc_info_model/pendant.dart
bggRGjQaUbCoE 924d51d41b opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-29 17:17:42 +08:00

14 lines
300 B
Dart

class Pendant {
String? image;
String? name;
int? pid;
Pendant({this.image, this.name, this.pid});
factory Pendant.fromJson(Map<String, dynamic> json) => Pendant(
image: json['image'] as String?,
name: json['name'] as String?,
pid: json['pid'] as int?,
);
}