MyTDTopicBookVC.h 611 B

123456789101112131415161718192021222324
  1. //
  2. // MyTDTopicBookVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/7/21.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyTDTopicBookVC : BaseViewController
  11. @property (nonatomic,assign) NSInteger FolderId;
  12. @property (nonatomic,assign) NSInteger ParentId;
  13. @property (nonatomic,assign) NSInteger roleId;
  14. @property (nonatomic,assign) BOOL isSelect;
  15. @property (nonatomic,assign) BOOL isNotRoot;
  16. @property (nonatomic,copy) NSString * titleStr;
  17. +(MyTDTopicBookVC *)initMyTDTopicBookVC;
  18. @end
  19. NS_ASSUME_NONNULL_END