refa: coin/like arc

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-06 21:33:55 +08:00
parent 77e418e4b7
commit db4283af4a
10 changed files with 220 additions and 121 deletions

View File

@@ -1,17 +0,0 @@
import 'package:PiliPlus/models/model_hot_video_item.dart';
class MemberCoinsDataModel extends HotVideoItemModel {
String? subtitle;
int? coins;
int? time;
String? resourceType;
MemberCoinsDataModel.fromJson(Map<String, dynamic> json)
: super.fromJson(json) {
coins = json['coins'];
subtitle = json['subtitle'];
time = json['time'];
resourceType = json['resource_type'];
redirectUrl = json['redirect_url'];
}
}