TUIEvaluationCellData.h 433 B

123456789101112131415161718192021
  1. //
  2. // TUIEvaluationCellData.h
  3. // TUIChat
  4. //
  5. // Created by xia on 2022/6/10.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <TIMCommon/TUIBubbleMessageCellData.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUIEvaluationCellData : TUIBubbleMessageCellData
  11. @property(nonatomic, assign) NSInteger score;
  12. @property(nonatomic, copy) NSString *desc;
  13. @property(nonatomic, copy) NSString *comment;
  14. @end
  15. NS_ASSUME_NONNULL_END