| 1234567891011121314151617181920212223242526272829 | 
							- //
 
- //  ASCurrencyManager.h
 
- //  Asteria
 
- //
 
- //  Created by iOS on 2023/12/9.
 
- //
 
- #import <Foundation/Foundation.h>
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASCurrencyManager : NSObject
 
- /// 当前选中的货币
 
- @property (nonatomic, copy, readonly) NSString *currentCur;
 
- @property (nonatomic, strong) NSArray<NSString *> *avaiCurencys;
 
- - (void)setSelectCurrency:(NSString *)sel;
 
- + (instancetype)shared;
 
- - (void)getAllCurrencyData;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |