12345678910111213141516171819 |
- //
- // AboutViewController.h
- // VclustersGemini
- //
- // Created by APPLE on 2020/2/24.
- // Copyright © 2020 APPLE. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface AboutViewController : BaseViewController
- //获取云机剩余空间
- @property (nonatomic,copy) void (^getSysInfo)(void);
- @end
- NS_ASSUME_NONNULL_END
|