12345678910111213141516171819 |
- //
- // fileTransferPathCheckViewController.h
- // 隐私保护
- //
- // Created by xd h on 2023/12/28.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface fileTransferPathCheckViewController : BaseViewController
- @property(nonatomic,assign) NSInteger curType;// 1上传 2是备份
- @property (nonatomic,copy) void (^didChangeSavePathFun)(void);
- @end
- NS_ASSUME_NONNULL_END
|