JXGroupHeplerModel.h 756 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // JXGroupHeplerModel.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/5/29.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "JXHelperModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface JXGroupHeplerModel : NSObject
  12. @property (nonatomic, strong) JXHelperModel *helperModel;
  13. @property (nonatomic, strong) NSString *helperId;// 群助手列表id
  14. @property (nonatomic, strong) NSString *groupHelperId; // 添加到群的群助手id
  15. @property (nonatomic, strong) NSString *roomId;
  16. @property (nonatomic, strong) NSString *roomJid;
  17. @property (nonatomic, strong) NSString *userId;
  18. //keywords
  19. @property (nonatomic, strong) NSArray *keywords;
  20. - (void)getDataWithDict:(NSDictionary *)dict;
  21. @end
  22. NS_ASSUME_NONNULL_END