123456789101112131415161718192021222324 |
- //
- // MyTDTopicBookVC.h
- // smartRhino
- //
- // Created by niuzhen on 2020/7/21.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDTopicBookVC : BaseViewController
- @property (nonatomic,assign) NSInteger FolderId;
- @property (nonatomic,assign) NSInteger ParentId;
- @property (nonatomic,assign) NSInteger roleId;
- @property (nonatomic,assign) BOOL isSelect;
- @property (nonatomic,assign) BOOL isNotRoot;
- @property (nonatomic,copy) NSString * titleStr;
- +(MyTDTopicBookVC *)initMyTDTopicBookVC;
- @end
- NS_ASSUME_NONNULL_END
|