22 lines
382 B
Objective-C
22 lines
382 B
Objective-C
//
|
|
// ZMKHBindBankVC.h
|
|
// sugar
|
|
//
|
|
// Created by bj_szd on 2022/6/21.
|
|
// Copyright © 2022 sugar. All rights reserved.
|
|
//
|
|
|
|
#import "BaseController.h"
|
|
#import "SPWalletModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZMKHBindBankVC : BaseController
|
|
|
|
@property(nonatomic, strong) SPWalletModel *model;
|
|
@property(nonatomic, copy) void (^winBlock)(void);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|