26 lines
553 B
Objective-C
Executable File
26 lines
553 B
Objective-C
Executable File
//
|
|
// RCMicParticipantViewModel.h
|
|
// SealMic
|
|
//
|
|
// Created by lichenfeng on 2020/6/7.
|
|
// Copyright © 2020 rongcloud. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RCMicParticipantInfo.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RCMicParticipantViewModel : NSObject
|
|
|
|
@property (nonatomic, strong) RCMicParticipantInfo *participantInfo;
|
|
|
|
- (instancetype)initWithParticipantInfo:(RCMicParticipantInfo *)participantInfo;
|
|
|
|
/// 礼物弹框时赋值使用
|
|
@property (nonatomic, assign) BOOL isGiftSelected;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|