12345678910111213141516171819202122232425262728293031323334 |
- //
- // NTESRedPacketTipAttachment.h
- // NIM
- //
- // Created by chris on 2017/7/17.
- // Copyright © 2017年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NTESCustomAttachmentDefines.h"
- @interface NTESRedPacketTipAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
- /**
- 红包发送者ID
- */
- @property (nonatomic, strong) NSString * sendPacketId;
- /**
- 拆红包的人的ID
- */
- @property (nonatomic, strong) NSString * openPacketId;
- /**
- * 红包ID
- */
- @property (nonatomic, strong) NSString * packetId;
- /**
- 是否为最后一个红包
- */
- @property (nonatomic, strong) NSString * isGetDone;
- @end
|