YOUPAILPFollowAttachment.h 938 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAILPFollowAttachment.h
  3. // zhimi
  4. //
  5. // Created by 张灿 on 2019/1/28.
  6. // Copyright © 2019年 caiPro. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LCCustomAttachmentDefine.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. //被关注通知
  12. @interface YOUPAILPFollowAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
  13. @property(nonatomic,assign)NSInteger userid; //用户ID
  14. @property(nonatomic,assign)NSInteger age; //年龄
  15. @property(nonatomic,assign)NSInteger sex;
  16. @property(nonatomic,strong)NSString* nickname; //昵称
  17. @property(nonatomic,strong)NSString* avatar; //头像
  18. @property(nonatomic,strong)NSString* city; //城市
  19. @property(nonatomic,strong)NSString* time; //时间
  20. //v1.0.7
  21. @property(nonatomic,assign)NSInteger type;//新增粉丝和上线复用 加一个类型区别
  22. @property(nonatomic,strong)NSString *sign;
  23. @property (nonatomic,strong) NSDictionary *grade;
  24. @end
  25. NS_ASSUME_NONNULL_END