ASUserNotifyStatic.h 782 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ASUserNotifyStatic.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/11/29.
  6. //
  7. #ifndef ASUserNotifyStatic_h
  8. #define ASUserNotifyStatic_h
  9. //网络状态更新通知
  10. #define netStatusUpdate @"netStatusUpdate"
  11. /// 保存用户选择的货币
  12. #define UserLocalCur @"UserLocalCur"
  13. /// 保存用户选择的货币符号
  14. //#define UserLocalCurSymbol @"UserLocalCurSymbol"
  15. /// 通知用户选择的货币更新
  16. #define UserLocalCurUpdate @"UserLocalCurUpdate"
  17. /// 通知用户信息更新
  18. #define UserInfoUpdate @"ASUserInfoUpdate"
  19. /// 切换商品规格后更新商品价格
  20. #define GoodsDetailsUpdatePrice @"GoodsDetailsUpdatePrice"
  21. /// 切换币种之后通知首页数据刷新
  22. #define HomeDataUpdateByCurrency @"HomeDataUpdateByCurrency"
  23. #endif /* ASUserNotifyStatic_h */