FloatChatSelectors.swift 437 B

123456789101112131415
  1. //
  2. // FloatChatSelectors.swift
  3. // TUIRoomKit
  4. //
  5. // Created by CY zhao on 2024/5/10.
  6. // Copyright © 2024 Tencent. All rights reserved.
  7. //
  8. import Foundation
  9. enum FloatChatSelectors {
  10. static let getLatestMessage = Selector(keyPath: \FloatChatState.latestMessage)
  11. static let getShowFloatInputView = Selector(keyPath: \FloatChatState.isFloatInputViewShow)
  12. static let getRoomId = Selector(keyPath: \FloatChatState.roomId)
  13. }