mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
20 lines
511 B
Dart
20 lines
511 B
Dart
import 'package:PiliPlus/models_new/video/video_detail/stat_detail.dart';
|
|
|
|
class PgcStat extends StatDetail {
|
|
int? favorites;
|
|
String? followText;
|
|
|
|
PgcStat.fromJson(Map<String, dynamic> json) {
|
|
coin = json["coins"] ?? 0;
|
|
danmaku = json["danmakus"];
|
|
favorite = json["favorite"] ?? 0;
|
|
favorites = json["favorites"];
|
|
followText = json["follow_text"];
|
|
like = json["likes"] ?? 0;
|
|
reply = json["reply"];
|
|
share = json["share"];
|
|
view = json["views"];
|
|
vt = json["vt"];
|
|
}
|
|
}
|