NTESRedPacketTipAttachment.h 649 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // NTESRedPacketTipAttachment.h
  3. // NIM
  4. //
  5. // Created by chris on 2017/7/17.
  6. // Copyright © 2017年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NTESCustomAttachmentDefines.h"
  10. @interface NTESRedPacketTipAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
  11. /**
  12. 红包发送者ID
  13. */
  14. @property (nonatomic, strong) NSString * sendPacketId;
  15. /**
  16. 拆红包的人的ID
  17. */
  18. @property (nonatomic, strong) NSString * openPacketId;
  19. /**
  20. * 红包ID
  21. */
  22. @property (nonatomic, strong) NSString * packetId;
  23. /**
  24. 是否为最后一个红包
  25. */
  26. @property (nonatomic, strong) NSString * isGetDone;
  27. @end