首页派对里面喜欢

This commit is contained in:
fengshuo
2022-03-02 19:18:08 +08:00
parent 66de1ae1d2
commit e784fee8da
57 changed files with 1619 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
//
// HomeLiveRoomModel.h
// xplan-ios
//
// Created by 冯硕 on 2022/3/2.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface HomeLiveRoomModel : NSObject
///昵称
@property (nonatomic, copy) NSString *nick;
///头像
@property (nonatomic, copy) NSString *avatar;
///用户的id
@property (nonatomic,assign) NSInteger uid;
///在房间中用户的uid
@property (nonatomic, assign) NSInteger roomUid;
@end
NS_ASSUME_NONNULL_END