12345678910111213141516171819202122232425262728293031 |
- //
- // NIMKitInfoFetchOption.h
- // NIMKit
- //
- // Created by chris on 2016/12/26.
- // Copyright © 2016年 NetEase. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class NIMSession;
- @class NIMMessage;
- @interface NIMKitInfoFetchOption : NSObject
- /**
- * 所属会话,非必填选项
- */
- @property (nonatomic,strong) NIMSession *session;
- /**
- * 所属消息,非必填选项
- */
- @property (nonatomic,strong) NIMMessage *message;
- /**
- * 屏蔽备注名,非必填选项
- */
- @property (nonatomic,assign) BOOL forbidaAlias;
- @end
|