12345678910111213141516171819202122232425262728 |
- //
- // MyTDGroupViewController.h
- // smartRhino
- //
- // Created by tederen on 2019/10/31.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "FlowAttachmentsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDGroupViewController : BaseViewController
- @property (nonatomic, assign) NSInteger ParentId;
- @property (nonatomic, assign) BOOL isSubVC;
- @property (nonatomic, copy) NSString * titleStr;
- @property (assign, nonatomic) CreateFileFolderType type;
- @property (copy, nonatomic) FlowAttachmentsModel * sendModel;
- @property (assign, nonatomic) BOOL isReturn;
- @property (assign, nonatomic) BOOL isPush;
- @property (copy, nonatomic) NSDictionary * pushDict;
- @end
- NS_ASSUME_NONNULL_END
|