ReplyInfo.h 550 B

12345678910111213141516171819
  1. //
  2. // ReplyInfo.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 15/11/16.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ReplyInfo :NSObject
  10. @property (strong,nonatomic) NSString *replyId;
  11. @property (strong,nonatomic)NSString *replyContent;
  12. @property (strong,nonatomic)NSString *userName;
  13. @property (strong,nonatomic)NSString *RepliedUserName;
  14. @property (assign,nonatomic)NSInteger createUserId;
  15. @property (assign,nonatomic)NSInteger recordId;
  16. @property (assign,nonatomic)NSInteger replyUserId;
  17. @end