| 1234567891011121314 |
- //
- // PageSwitchModel.h
- // IBOSSHSH
- //
- // Created by ssl on 2017/11/20.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface PageSwitchModel : NSObject
- @property (strong, nonatomic) NSString *title;
- @property (strong, nonatomic) UIViewController *controller;
- @end
|