24 lines
499 B
Objective-C
24 lines
499 B
Objective-C
//
|
|
// MessageOpenLiveModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2023/1/30.
|
|
//
|
|
|
|
#import "MessageBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class ContentOpenLiveInfoModel;
|
|
@interface MessageOpenLiveModel : MessageBaseModel
|
|
///用户信息
|
|
@property (nonatomic,strong) ContentOpenLiveInfoModel *userInfo;
|
|
///头像
|
|
@property (nonatomic,strong) NSString *avatar;
|
|
///昵称
|
|
@property (nonatomic,strong) NSString *nick;
|
|
///用户信息
|
|
@property (nonatomic,strong) NSString *uid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|