NIMKitInfoFetchOption.h 549 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // NIMKitInfoFetchOption.h
  3. // NIMKit
  4. //
  5. // Created by chris on 2016/12/26.
  6. // Copyright © 2016年 NetEase. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class NIMSession;
  10. @class NIMMessage;
  11. @interface NIMKitInfoFetchOption : NSObject
  12. /**
  13. * 所属会话,非必填选项
  14. */
  15. @property (nonatomic,strong) NIMSession *session;
  16. /**
  17. * 所属消息,非必填选项
  18. */
  19. @property (nonatomic,strong) NIMMessage *message;
  20. /**
  21. * 屏蔽备注名,非必填选项
  22. */
  23. @property (nonatomic,assign) BOOL forbidaAlias;
  24. @end