1234567891011121314151617181920212223 |
- //
- // MyTDTopicSelectExtentVC.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/20.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDTopicSelectExtentVC : BaseViewController
- @property (assign, nonatomic) BOOL isSubVC;
- @property (assign, nonatomic) NSInteger ParentId;
- @property (assign, nonatomic) NSInteger folderId;
- @property (copy, nonatomic) NSString * fileName;
- @property (copy, nonatomic) NSString * titleStr;
- +(MyTDTopicSelectExtentVC *)initMyTDTopicSelectExtentVC;
- @end
- NS_ASSUME_NONNULL_END
|