MOLiveManager.swift 333 B

123456789101112131415161718192021
  1. //
  2. // MOLiveManager.swift
  3. // MiMoLive
  4. //
  5. // Created by OneeChan on 2025/9/28.
  6. //
  7. import Foundation
  8. @objcMembers
  9. class MOLiveManager: NSObject {
  10. weak static var curLive: MOLiveViewModel?
  11. static var curRoomId: String? {
  12. curLive?.curRoomId
  13. }
  14. static var isInLive: Bool {
  15. curLive != nil
  16. }
  17. }