Files
PiliPlus/lib/models/pgc_lcf.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

21 lines
379 B
Dart

class PgcLCF {
num? 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"],
);
}