1234567891011121314151617181920 |
- //
- // NTESRedPacketAttachment.h
- // NIM
- //
- // Created by chris on 2017/7/14.
- // Copyright © 2017年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NTESCustomAttachmentDefines.h"
- @interface NTESRedPacketAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
- @property (nonatomic, copy) NSString *redPacketId;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *content;
- @end
|