Files
real-e-party-iOS/YuMi/Global/YUMIHtmlUrl.h.backup
2025-10-17 14:52:29 +08:00

27 lines
569 B
Plaintext
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.

//
// YMHtmlUrl.h
// YUMI
//
// Created by YUMI on 2021/9/13.
//
///放置h5的链接地址
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface YUMIHtmlUrl : NSObject
/// URL类型枚举仅保留实际使用的类型
typedef NS_ENUM(NSUInteger, URLType) {
kPrivacyURL = 0, ///隐私政策
kUserProtocalURL = 4, ///用户协议
kFAQURL = 6, ///帮助/常见问题
kCaptchaSwitchPath = 113, ///人机验证
};
NSString * const URLWithType(URLType type);
@end
NS_ASSUME_NONNULL_END