ReleaseDynamicVC.h 528 B

123456789101112131415161718192021222324
  1. //
  2. // ReleaseDynamicVC.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/11/26.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import "XWPublishBaseController.h"
  9. #import "MGDynamicTopicModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ReleaseDynamicVC : XWPublishBaseController
  12. @property(nonatomic, copy) void (^postFinishBlock)(BOOL isFinish);
  13. //如果直接从动态点进来,暂时先将动态里面的话题转换成model
  14. @property(nonatomic, strong) MGDynamicTopicModel *topic;/**<话题*/
  15. @end
  16. NS_ASSUME_NONNULL_END