WFCUGroupAnnouncement.h 536 B

123456789101112131415161718192021222324
  1. //
  2. // WFCUGroupAnnouncement.h
  3. // WFChatUIKit
  4. //
  5. // Created by Heavyrain Lee on 2019/10/22.
  6. // Copyright © 2019 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WFCUGroupAnnouncement : NSObject
  11. @property(nonatomic, strong)NSString *groupId;
  12. @property(nonatomic, strong)NSString *author;
  13. @property(nonatomic, strong)NSString *text;
  14. @property(nonatomic, assign)long timestamp;
  15. //用于存储和恢复
  16. @property(nonatomic, strong)NSData *data;
  17. @end
  18. NS_ASSUME_NONNULL_END