25 lines
454 B
Plaintext
25 lines
454 B
Plaintext
//
|
||
// YMConstant.h
|
||
// YUMI
|
||
//
|
||
// Created by YUMI on 2021/9/13.
|
||
//
|
||
///项目配置常量
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface YUMIConstant : NSObject
|
||
|
||
/// 配置Key类型枚举(仅保留实际使用的类型)
|
||
typedef NS_ENUM(NSUInteger, Pi_KeyType) {
|
||
KeyType_Sign = 0, ///参数加密签名Key
|
||
};
|
||
|
||
/// 获取指定类型的配置值
|
||
NSString * const KeyWithType(Pi_KeyType type);
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|