Files
real-e-party-iOS/YuMi/Global/YUMIConstant.h
2025-10-17 14:03:50 +08:00

25 lines
454 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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