1234567891011121314151617181920 |
- //
- // GroupVerifyVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/7/16.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface GroupVerifyVC : BaseViewController
- @property (copy, nonatomic) void(^SendBlock)(void);
- @property (assign, nonatomic) NSInteger Id;
- +(GroupVerifyVC *)initGroupVerifyVC;
- @end
- NS_ASSUME_NONNULL_END
|