TUIJoinGroupMessageCellData.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. /**
  4. *
  5. *
  6. * This file declares the TUIJoinGroupMessageCellData class.
  7. * This document is responsible for realizing the function of the small gray bar for entering the group, and can also be further extended to a group message
  8. * unit with a single operator. That is, this file can highlight the operator's nickname in blue and provide a response interface for the highlighted part in
  9. * blue.
  10. */
  11. #import <TIMCommon/TUISystemMessageCellData.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface TUIJoinGroupMessageCellData : TUISystemMessageCellData
  14. /**
  15. *
  16. * Operator nickname. For example, "Tom joined the group", the variable content is "Tom"
  17. */
  18. @property(nonatomic, strong) NSString *opUserName;
  19. /**
  20. * The nickname of the operator.
  21. */
  22. @property(nonatomic, strong) NSMutableArray<NSString *> *userNameList;
  23. /**
  24. * Operator Id.
  25. */
  26. @property(nonatomic, strong) NSString *opUserID;
  27. /**
  28. * List of the operator IDs.
  29. */
  30. @property(nonatomic, strong) NSMutableArray<NSString *> *userIDList;
  31. @end
  32. NS_ASSUME_NONNULL_END