mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
21 lines
379 B
Dart
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"],
|
|
);
|
|
}
|