33 lines
976 B
Objective-C
33 lines
976 B
Objective-C
//
|
|
// XPRoomRecommendModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/4/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPEnum.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomRecommendModel : NSObject
|
|
|
|
@property (nonatomic, assign) NSInteger roomId;
|
|
@property (nonatomic, assign) NSInteger uid;
|
|
@property (nonatomic, assign) NSInteger isPermitRoom;
|
|
//@property (nonatomic, strong) NSArray<RecommendUserInRoomModel *> *micUsers;//群成员列表
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, assign) NSInteger onlineNum;
|
|
@property (nonatomic, assign) NSInteger micUserCount;
|
|
@property (nonatomic, copy) NSString *tagPict;
|
|
@property (nonatomic, copy) NSString *roomTag;
|
|
@property (nonatomic, copy) NSString *avatar;
|
|
@property (nonatomic , assign) GenderType gender;
|
|
@property (nonatomic, copy) NSString *infoUid;
|
|
@property (nonatomic, copy) NSString *nick;
|
|
@property (nonatomic, copy) NSString *roomPwd;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|