| 123456789101112131415161718192021 |
- //
- // MOLiveManager.swift
- // MiMoLive
- //
- // Created by OneeChan on 2025/9/28.
- //
- import Foundation
- @objcMembers
- class MOLiveManager: NSObject {
- weak static var curLive: MOLiveViewModel?
- static var curRoomId: String? {
- curLive?.curRoomId
- }
-
- static var isInLive: Bool {
- curLive != nil
- }
- }
|