123456789101112131415161718192021222324252627 |
- //
- // MyTDTopicSearchVC.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/19.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "SearchBaseVC.h"
- typedef enum TDTopicSearchType{
- TDTopicGroupSearch = 0,
- TDTopicSearch = 1,
- TDGroupSearch = 2,
- }TDTopicSearchType;
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDTopicSearchVC : SearchBaseVC
- @property (nonatomic, assign) TDTopicSearchType searchType;
- @property (nonatomic, assign) NSInteger GroupId;
- @property (nonatomic, assign) NSInteger floderId;
- @property (strong, nonatomic) FlowAttachmentsModel * sendModel;
- @property (assign, nonatomic) BOOL isReturn;
- @end
- NS_ASSUME_NONNULL_END
|