1234567891011121314151617181920 |
- //
- // IndexMoreVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/9/18.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface IndexMoreVC : BaseViewController
- @property (nonatomic, assign) NSInteger Id;
- @property (nonatomic, copy) NSString *titleStr;
- +(IndexMoreVC *)initIndexMoreVC;
- @end
- NS_ASSUME_NONNULL_END
|