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

30 lines
579 B
Dart

class PgcTriple {
int? coin;
int? 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"],
);
}