CommentDelegate.h 349 B

1234567891011121314
  1. //
  2. // CommentDelegate.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/6/15.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LogShareAndCommentInfoModel.h"
  10. @protocol CommentDelegate <NSObject>
  11. // 评论事件回调函数
  12. - (void)reCommentData:(LogShareAndCommentInfoModel*)model;
  13. @end