提交
This commit is contained in:
24
TUIKit/TUIRoomKit/Source/View/Model/ConferenceParams.swift
Normal file
24
TUIKit/TUIRoomKit/Source/View/Model/ConferenceParams.swift
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// ConferenceParams.swift
|
||||
// TUIRoomKit
|
||||
//
|
||||
// Created by janejntang on 2024/3/14.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
@objcMembers public class ConferenceParams : NSObject {
|
||||
public var isMuteMicrophone = false
|
||||
public var isOpenCamera = false
|
||||
public var isSoundOnSpeaker = true
|
||||
|
||||
public var name: String?
|
||||
public var enableMicrophoneForAllUser = true
|
||||
public var enableCameraForAllUser = true
|
||||
public var enableMessageForAllUser = true
|
||||
public var enableSeatControl = false
|
||||
|
||||
deinit {
|
||||
debugPrint("deinit \(self)")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user