1234567891011121314151617181920 |
- //
- // TXLiveMessageBlockUser.h
- // StudentDaya
- //
- // Created by 王智 on 2023/2/28.
- // Copyright © 2023 DayaMusic. All rights reserved.
- //
- #import "TXLiveMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TXLiveMessageBlockUser : TXLiveMessageModel
- /**
- 用户 Id
- */
- @property(nonatomic, copy, nonnull) NSString *userId;
- @end
- NS_ASSUME_NONNULL_END
|