1234567891011121314151617181920212223 |
- //
- // SettingViewController.h
- // DSH
- //
- // Created by 张毅成 on 2018/9/26.
- // Copyright © 2018 WZX. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MyModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SettingViewController : UIViewController
- /**
-
- */
- @property (strong, nonatomic) MyModel *modelMy;
- @end
- NS_ASSUME_NONNULL_END
|