Files
yuyin_ios/SweetParty/主类/RCMic/Room/Participants/ViewModel/RCMicParticipantViewModel.h
2025-08-08 11:05:33 +08:00

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