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

30 lines
547 B
Dart

class PgcTriple {
num? coin;
num? coinNumber;
int? favorite;
int? fmid;
int? follow;
int? like;
bool? relation;
PgcTriple({
this.coin,
this.coinNumber,
this.favorite,
this.fmid,
this.follow,
this.like,
this.relation,
});
factory PgcTriple.fromJson(Map<String, dynamic> json) => PgcTriple(
coin: json["coin"],
coinNumber: json["coin_number"],
favorite: json["favorite"],
fmid: json["fmid"],
follow: json["follow"],
like: json["like"],
relation: json["relation"],
);
}