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