1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAILPFollowAttachment.h
- // zhimi
- //
- // Created by 张灿 on 2019/1/28.
- // Copyright © 2019年 caiPro. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LCCustomAttachmentDefine.h"
- NS_ASSUME_NONNULL_BEGIN
- //被关注通知
- @interface YOUPAILPFollowAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
- @property(nonatomic,assign)NSInteger userid; //用户ID
- @property(nonatomic,assign)NSInteger age; //年龄
- @property(nonatomic,assign)NSInteger sex;
- @property(nonatomic,strong)NSString* nickname; //昵称
- @property(nonatomic,strong)NSString* avatar; //头像
- @property(nonatomic,strong)NSString* city; //城市
- @property(nonatomic,strong)NSString* time; //时间
- //v1.0.7
- @property(nonatomic,assign)NSInteger type;//新增粉丝和上线复用 加一个类型区别
- @property(nonatomic,strong)NSString *sign;
- @property (nonatomic,strong) NSDictionary *grade;
- @end
- NS_ASSUME_NONNULL_END
|