Files
PiliPlus/lib/models/member/coin.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

18 lines
451 B
Dart

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'];
}
}