ASUserNotifyStatic.h 713 B

123456789101112131415161718192021222324252627
  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 UserLocalCur @"UserLocalCur"
  11. /// 保存用户选择的货币符号
  12. //#define UserLocalCurSymbol @"UserLocalCurSymbol"
  13. /// 通知用户选择的货币更新
  14. #define UserLocalCurUpdate @"UserLocalCurUpdate"
  15. /// 通知用户信息更新
  16. #define UserInfoUpdate @"ASUserInfoUpdate"
  17. /// 切换商品规格后更新商品价格
  18. #define GoodsDetailsUpdatePrice @"GoodsDetailsUpdatePrice"
  19. /// 切换币种之后通知首页数据刷新
  20. #define HomeDataUpdateByCurrency @"HomeDataUpdateByCurrency"
  21. #endif /* ASUserNotifyStatic_h */