MyTDTopicSearchVC.h 696 B

123456789101112131415161718192021222324252627
  1. //
  2. // MyTDTopicSearchVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/19.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "SearchBaseVC.h"
  9. typedef enum TDTopicSearchType{
  10. TDTopicGroupSearch = 0,
  11. TDTopicSearch = 1,
  12. TDGroupSearch = 2,
  13. }TDTopicSearchType;
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface MyTDTopicSearchVC : SearchBaseVC
  16. @property (nonatomic, assign) TDTopicSearchType searchType;
  17. @property (nonatomic, assign) NSInteger GroupId;
  18. @property (nonatomic, assign) NSInteger floderId;
  19. @property (strong, nonatomic) FlowAttachmentsModel * sendModel;
  20. @property (assign, nonatomic) BOOL isReturn;
  21. @end
  22. NS_ASSUME_NONNULL_END