mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 04:00:28 +08:00
21 lines
340 B
Dart
21 lines
340 B
Dart
class UgcTriple {
|
|
bool? like;
|
|
bool? coin;
|
|
bool? fav;
|
|
int? multiply;
|
|
|
|
UgcTriple({
|
|
this.like,
|
|
this.coin,
|
|
this.fav,
|
|
this.multiply,
|
|
});
|
|
|
|
factory UgcTriple.fromJson(Map<String, dynamic> json) => UgcTriple(
|
|
like: json["like"],
|
|
coin: json["coin"],
|
|
fav: json["fav"],
|
|
multiply: json["multiply"],
|
|
);
|
|
}
|