mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
14 lines
376 B
Dart
14 lines
376 B
Dart
import 'package:PiliPlus/models_new/video/video_detail/stat_detail.dart';
|
|
|
|
class PgcStat extends StatDetail {
|
|
PgcStat.fromJson(Map<String, dynamic> json) {
|
|
coin = json["coins"] ?? 0;
|
|
danmaku = json["danmakus"];
|
|
favorite = json["favorite"] ?? 0;
|
|
like = json["likes"] ?? 0;
|
|
reply = json["reply"];
|
|
share = json["share"];
|
|
view = json["views"];
|
|
}
|
|
}
|