CYDReplyModel.h 816 B

12345678910111213141516171819202122232425262728
  1. //
  2. // CYDReplyModel.h
  3. // MarryU
  4. //
  5. // Created by 志刚杨 on 2017/6/29.
  6. // Copyright © 2017年 voidcat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. //#import "UserPageInfoModel.h"
  10. #import "MGGroupUserInfo.h"
  11. @interface CYDReplyModel : NSObject
  12. @property(nonatomic, strong) NSString *addtime;
  13. @property(nonatomic, strong) NSString *audio;
  14. @property(nonatomic, strong) NSString *body;
  15. @property(nonatomic, strong) NSString *audio_duration;
  16. @property(nonatomic, strong) NSString *comments;
  17. @property(nonatomic, strong) NSString *content;
  18. @property(nonatomic, strong) NSString *cover_url;
  19. @property(nonatomic, strong) NSString *forwarding;
  20. @property(nonatomic, strong) NSString *head_image;
  21. @property(nonatomic, strong) NSString *id;
  22. @property(nonatomic, strong) MGGroupUserInfo *userInfo;
  23. @end