NoEnoughTimeViewController.h 567 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NoEnoughTimeViewController.h
  3. // 隐私保护
  4. //
  5. // Created by APPLE on 2023/8/30.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol NoEnoughTimeViewControllerDelegate <NSObject>
  10. - (void)exchangeBtnClickPressed;
  11. @end
  12. @interface NoEnoughTimeViewController : BaseViewController
  13. @property (nonatomic,weak)id <NoEnoughTimeViewControllerDelegate> delegate;
  14. @property (nonatomic ,strong)NSArray *privilegeList;
  15. /*云机到期会保留数据多少天*/
  16. @property (nonatomic ,assign)NSInteger expirationReminder;
  17. @end
  18. NS_ASSUME_NONNULL_END