NTESWhiteboardAttachment.h 515 B

123456789101112131415161718192021
  1. //
  2. // NTESWhiteboardAttachment.h
  3. // NIM
  4. //
  5. // Created by 高峰 on 15/7/28.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NTESCustomAttachmentDefines.h"
  10. typedef NS_ENUM(NSInteger, CustomWhiteboardFlag) {
  11. CustomWhiteboardFlagInvite = 0,//邀请
  12. CustomWhiteboardFlagClose = 1,//关闭
  13. };
  14. @interface NTESWhiteboardAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
  15. @property (nonatomic,assign) CustomWhiteboardFlag flag;
  16. @end