opt: coin/like item jump

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-30 10:30:55 +08:00
parent 17a75da540
commit b3f117d28e
6 changed files with 21 additions and 11 deletions

View File

@@ -4,6 +4,7 @@ class MemberCoinsDataModel extends HotVideoItemModel {
String? subtitle;
int? coins;
int? time;
String? resourceType;
// int? get view => stat.view;
// int? get danmaku => stat.danmu;
@@ -12,6 +13,8 @@ class MemberCoinsDataModel extends HotVideoItemModel {
coins = json['coins'];
subtitle = json['subtitle'];
time = json['time'];
resourceType = json['resource_type'];
redirectUrl = json['redirect_url'];
// view = json['stat']['view'];
// danmaku = json['stat']['danmaku'];
}