13 lines
317 B
Dart
13 lines
317 B
Dart
import 'package:flutter_kinetra/kt_model/kt_receive_coin_info.dart';
|
|
|
|
import 'package:flutter_kinetra/kt_model/kt_short_video_bean.dart';
|
|
|
|
class KtRefillState {
|
|
KtRefillState();
|
|
|
|
ReceiveCoinInfo? receiveCoinInfo;
|
|
bool hasSubCoin = false;
|
|
List<KtShortVideoBean> recommendList = [];
|
|
int recommendIndex = 0;
|
|
}
|