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