FIRRemoteConfigUpdate.swift 250 B

12345678910111213
  1. import Foundation
  2. class FIRRemoteConfigUpdate {
  3. private var _updatedKeys: Set<String>
  4. init(updatedKeys: Set<String>) {
  5. _updatedKeys = updatedKeys
  6. }
  7. var updatedKeys: Set<String> {
  8. return _updatedKeys
  9. }
  10. }