12345678910111213141516171819202122 |
- //
- // TXGroupNoticeMessage.h
- // TUIChat
- //
- // Created by 王智 on 2024/8/30.
- //
- #import "TUIMessageCellData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TXGroupNoticeMessage : TUIMessageCellData
- @property (nonatomic, strong) NSString *noticeId;
- @property (nonatomic, strong) NSString *msgTitle;
- @property (nonatomic, strong) NSString *msgContent;
- @end
- NS_ASSUME_NONNULL_END
|