QSLNotification.swift 947 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // QSLNotification.swift
  3. // QuickSearchLocation
  4. //
  5. // Created by Destiny on 2024/12/4.
  6. //
  7. import Foundation
  8. struct QSLNotification {
  9. // 登录成功通知
  10. static let QSLLogin = Notification.Name("QSLLoginNotification")
  11. // 退出登录通知
  12. static let QSLLogout = Notification.Name("QSLLogoutNotification")
  13. // 刷新申请通知
  14. static let QSLRefreshRequest = Notification.Name("QSLRefreshRequestNotification")
  15. // 刷新消息通知
  16. static let QSLRefreshMessage = Notification.Name("QSLRefreshMessageNotification")
  17. // 刷新好友列表通知
  18. static let QSLRefreshFriend = Notification.Name("QSLRefreshFriendNotification")
  19. // 刷新紧急联系人列表通知
  20. static let QSLRefreshContact = Notification.Name("QSLRefreshContactNotification")
  21. // 刷新Vip通知
  22. static let QSLRefreshMember = Notification.Name("QSLRefreshMemberNotification")
  23. }