123456789101112131415161718192021222324252627282930 |
- //
- // TXChatMusicMessage.h
- // TUIChat
- //
- // Created by 王智 on 2023/8/10.
- //
- #import "TUIMessageCellData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TXChatMusicMessage : TUIMessageCellData
- @property (nonatomic, strong) NSString *songName;
- @property (nonatomic, strong) NSString *chargeType;
- @property (nonatomic, strong) NSString *songAuth;
- @property (nonatomic, strong) NSString *teacherAvatar;
- @property (nonatomic, strong) NSString *teacherName;
- @property (nonatomic, strong) NSString *musicTagNames;
- @property (nonatomic, strong) NSString *songId;
- @end
- NS_ASSUME_NONNULL_END
|