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