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

30 lines
556 B
Dart

class UgcTriple {
bool? like;
bool? coin;
bool? fav;
int? multiply;
bool? isRisk;
int? gaiaResType;
dynamic gaiaData;
UgcTriple({
this.like,
this.coin,
this.fav,
this.multiply,
this.isRisk,
this.gaiaResType,
this.gaiaData,
});
factory UgcTriple.fromJson(Map<String, dynamic> json) => UgcTriple(
like: json["like"],
coin: json["coin"],
fav: json["fav"],
multiply: json["multiply"],
isRisk: json["is_risk"],
gaiaResType: json["gaia_res_type"],
gaiaData: json["gaia_data"],
);
}