12345678910111213141516171819202122232425262728 |
- //
- // NoEnoughTimeViewController.h
- // 隐私保护
- //
- // Created by APPLE on 2023/8/30.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol NoEnoughTimeViewControllerDelegate <NSObject>
- - (void)exchangeBtnClickPressed;
- @end
- @interface NoEnoughTimeViewController : BaseViewController
- @property (nonatomic,weak)id <NoEnoughTimeViewControllerDelegate> delegate;
- @property (nonatomic ,strong)NSArray *privilegeList;
- /*云机到期会保留数据多少天*/
- @property (nonatomic ,assign)NSInteger expirationReminder;
- @end
- NS_ASSUME_NONNULL_END
|