123456789101112131415161718192021 |
- //
- // NTESWhiteboardAttachment.h
- // NIM
- //
- // Created by 高峰 on 15/7/28.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NTESCustomAttachmentDefines.h"
- typedef NS_ENUM(NSInteger, CustomWhiteboardFlag) {
- CustomWhiteboardFlagInvite = 0,//邀请
- CustomWhiteboardFlagClose = 1,//关闭
- };
- @interface NTESWhiteboardAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
- @property (nonatomic,assign) CustomWhiteboardFlag flag;
- @end
|