| 12345678910111213141516171819 |
- //
- // ReplyInfo.h
- // IBOSS
- //
- // Created by guan hong hou on 15/11/16.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ReplyInfo :NSObject
- @property (strong,nonatomic) NSString *replyId;
- @property (strong,nonatomic)NSString *replyContent;
- @property (strong,nonatomic)NSString *userName;
- @property (strong,nonatomic)NSString *RepliedUserName;
- @property (assign,nonatomic)NSInteger createUserId;
- @property (assign,nonatomic)NSInteger recordId;
- @property (assign,nonatomic)NSInteger replyUserId;
- @end
|