MGReportCommentController.h 466 B

12345678910111213141516171819202122
  1. //
  2. // MGReportCommentController.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/1/15.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. #import "reportModel.h"
  10. #import "XWPublishBaseController.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface MGReportCommentController : XWPublishBaseController
  13. -(instancetype)initWithReportModel:(reportModel *)reportModel;
  14. @property(nonatomic, strong) reportModel *model;
  15. @end
  16. NS_ASSUME_NONNULL_END