38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
![]() |
//
|
||
|
// ResidenceDisportChamberMatrix.h
|
||
|
// YUMI
|
||
|
//
|
||
|
// Created by YUMI on 2022/2/25.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "YUMINNNN.h"
|
||
|
#import "ResidenceOriflammeAbstractMatrix.h"
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
@class ResidenceDisportLoudspeakerConsumerMatrix;
|
||
|
@interface ResidenceDisportChamberMatrix : NSObject
|
||
|
@property (nonatomic, copy) NSString *avatar;
|
||
|
@property (nonatomic, assign) BOOL crossPking;
|
||
|
@property(nonatomic, copy) NSString *erbanNo;
|
||
|
@property (nonatomic, assign) BOOL isBanner;
|
||
|
@property(nonatomic, copy) NSString *mgId;
|
||
|
@property(nonatomic, copy) NSString *mgName;
|
||
|
@property (nonatomic, strong) NSArray<ResidenceDisportLoudspeakerConsumerMatrix *> *micUsers;
|
||
|
@property (nonatomic, assign) NSInteger onlineNum;
|
||
|
@property (nonatomic, strong) NSString *tagPict;
|
||
|
@property (nonatomic, copy) NSString *title;
|
||
|
@property (nonatomic,copy) NSString *uid;
|
||
|
@property (nonatomic, strong) NSArray<ResidenceOriflammeAbstractMatrix *> *bannerVoList;
|
||
|
@property (nonatomic, copy) NSString *broadMsg;
|
||
|
@property (nonatomic,assign) GenderGenre gender;
|
||
|
@end
|
||
|
|
||
|
@interface ResidenceDisportLoudspeakerConsumerMatrix : NSObject
|
||
|
@property (nonatomic, copy) NSString *avatar;
|
||
|
@property (nonatomic,assign) GenderGenre gender;
|
||
|
@property (nonatomic,copy) NSString *nick;
|
||
|
@property (nonatomic,copy) NSString *uid;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|