NIMSyncMessagePinRequest.h 541 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // NIMSyncMessagePinRequest.h
  3. // NIMLib
  4. //
  5. // Created by 丁文超 on 2020/4/9.
  6. // Copyright © 2020 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class NIMSession;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NIMSyncMessagePinRequest : NSObject
  12. /**
  13. * 会话
  14. */
  15. @property (nonatomic, copy) NIMSession *session;
  16. /**
  17. * 同步时间戳(s)
  18. */
  19. @property (nonatomic, assign) NSTimeInterval timestamp;
  20. /**
  21. * 默认初始化方法
  22. */
  23. - (instancetype)initWithSession:(NIMSession *)session;
  24. @end
  25. NS_ASSUME_NONNULL_END