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

21 lines
399 B
Dart

class PgcLCF {
int? coinNumber;
int? favorite;
int? isOriginal;
int? like;
PgcLCF({
this.coinNumber,
this.favorite,
this.isOriginal,
this.like,
});
factory PgcLCF.fromJson(Map<String, dynamic> json) => PgcLCF(
coinNumber: json["coin_number"],
favorite: json["favorite"],
isOriginal: json["is_original"],
like: json["like"],
);
}