12345678910111213141516171819202122232425262728 |
- //
- // ASUserNotifyStatic.h
- // Asteria
- //
- // Created by iOS on 2023/11/29.
- //
- #ifndef ASUserNotifyStatic_h
- #define ASUserNotifyStatic_h
- //网络状态更新通知
- #define netStatusUpdate @"netStatusUpdate"
- /// 保存用户选择的货币
- #define UserLocalCur @"UserLocalCur"
- /// 保存用户选择的货币符号
- //#define UserLocalCurSymbol @"UserLocalCurSymbol"
- /// 通知用户选择的货币更新
- #define UserLocalCurUpdate @"UserLocalCurUpdate"
- /// 通知用户信息更新
- #define UserInfoUpdate @"ASUserInfoUpdate"
- /// 切换商品规格后更新商品价格
- #define GoodsDetailsUpdatePrice @"GoodsDetailsUpdatePrice"
- /// 切换币种之后通知首页数据刷新
- #define HomeDataUpdateByCurrency @"HomeDataUpdateByCurrency"
- #endif /* ASUserNotifyStatic_h */
|