12345678910111213141516171819202122 |
- //
- // XYSkillCertificationApplyBoxView.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/10/26.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYSkillCertificationApplyBoxView : UIView
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *contentLabel;
- @property (nonatomic, copy) dispatch_block_t actionBlock;
- @end
- NS_ASSUME_NONNULL_END
|