洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
564 B

7 months ago
  1. //
  2. // DTFSDKConfiguration.h
  3. // DTFUtility
  4. //
  5. // Created by 汪澌哲 on 2023/5/22.
  6. // Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface DTFSDKConfiguration : NSObject
  11. @property (nonatomic, strong) NSString *LOG_UPLOAD;
  12. @property (nonatomic, strong) NSString *LOG_DEBUG_UPLOAD;
  13. @property (nonatomic, copy) NSString *forceModelDownload;
  14. @property (nonatomic, copy) NSArray *modelUrlList;
  15. - (instancetype)initWithString:(NSString *)string;
  16. @end
  17. NS_ASSUME_NONNULL_END