KWSearchViewModel.h 562 B

1234567891011121314151617181920212223242526
  1. //
  2. // KWSearchViewModel.h
  3. // westkissMob
  4. //
  5. // Created by iOS on 2022/9/20.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "KWSearchSubTypeModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface KWSearchViewModel : NSObject
  11. @property (nonatomic, strong) NSArray<KWMainTypeModel *> *arr;
  12. @property (nonatomic, strong) KWMainTypeModel *moneyType;
  13. - (void)reqProductTypeList: (btnClickBlock)success;
  14. - (void)reqCurrenciesList:(btnClickBlock)success;
  15. - (void)switchCurrencie:(KWSubTypeSectionModel *)m callback:(void(^)(BOOL flag))success;
  16. @end
  17. NS_ASSUME_NONNULL_END