31 lines
485 B
C
Executable File
31 lines
485 B
C
Executable File
//
|
|
// MOBSDKDef.h
|
|
// MOBFoundation
|
|
//
|
|
// Created by liyc on 2018/8/22.
|
|
// Copyright © 2018年 MOB. All rights reserved.
|
|
//
|
|
|
|
#ifndef MOBSDKDef_h
|
|
#define MOBSDKDef_h
|
|
|
|
/**
|
|
* 国际域名类型
|
|
*/
|
|
typedef NS_ENUM(NSUInteger, MOBFSDKDomainType){
|
|
/**
|
|
* 默认(大陆域名)
|
|
*/
|
|
MOBFSDKDomainTypeDefault = 0,
|
|
/**
|
|
* 美国
|
|
*/
|
|
MOBFSDKDomainTypeUS = 1,
|
|
/**
|
|
* 日本
|
|
*/
|
|
MOBFSDKDomainTypeJapan = 2,
|
|
};
|
|
|
|
#endif /* MOBSDKDef_h */
|