You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
467 B
17 lines
467 B
import 'package:recook/models/goods_list_model.dart';
|
|
import 'package:recook/utils/mvp.dart';
|
|
import 'package:recook/widgets/mvp_list_view/mvp_list_view_contact.dart';
|
|
|
|
abstract class PurchaseRankingPresenterI
|
|
extends MvpListViewPresenterI<Goods, PurchaseRankingViewI, PurchaseRankingModelI> {
|
|
fetchList(int page,);
|
|
}
|
|
|
|
abstract class PurchaseRankingModelI extends MvpModel {
|
|
fetchList(int page,);
|
|
}
|
|
|
|
abstract class PurchaseRankingViewI extends MvpView {
|
|
|
|
}
|