MyTDTopicSearchVC.h 673 B

1234567891011121314151617181920212223242526
  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. TDTopicSearch = 0,
  11. TDTopicGroupSearch = 1,
  12. }TDTopicSearchType;
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface MyTDTopicSearchVC : SearchBaseVC
  15. @property (nonatomic, assign) TDTopicSearchType searchType;
  16. @property (nonatomic, assign) NSInteger GroupId;
  17. @property (nonatomic, assign) NSInteger floderId;
  18. @property (copy, nonatomic) FlowAttachmentsModel * sendModel;
  19. @property (assign, nonatomic) BOOL isReturn;
  20. @end
  21. NS_ASSUME_NONNULL_END