NIMSyncMessagePinResponse.h 567 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // NIMSyncMessagePinResponse.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. #import "NIMMessagePinItem.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NIMSyncMessagePinResponse : NSObject
  12. /**
  13. * 同步时间戳
  14. */
  15. @property (nonatomic, assign) NSTimeInterval timestamp;
  16. /**
  17. * 是否有更新内容
  18. */
  19. @property (nonatomic, assign) BOOL hasChange;
  20. /**
  21. * 更新的内容
  22. */
  23. @property (nonatomic, copy) NSArray<NIMMessagePinItem *> *items;
  24. @end
  25. NS_ASSUME_NONNULL_END