OperationState.swift 311 B

123456789101112131415
  1. //
  2. // OperationState.swift
  3. // TUIRoomKit
  4. //
  5. // Created by CY zhao on 2024/6/12.
  6. //
  7. import Foundation
  8. struct OperationState {
  9. var roomState = RoomInfo()
  10. var userState = UserState()
  11. var conferenceListState = ConferenceListState()
  12. var conferenceInvitationState = ConferenceInvitationState()
  13. }