///
/// 第三方登录选项
///
namespace LeanCloud.Storage {
public class LCUserAuthDataLoginOption {
///
/// Union Id 平台
///
public string UnionIdPlatform {
get; set;
}
///
/// 是否作为主账号
///
public bool AsMainAccount {
get; set;
}
///
/// 是否在不存在的情况下返回失败
///
public bool FailOnNotExist {
get; set;
}
public LCUserAuthDataLoginOption() {
UnionIdPlatform = "weixin";
AsMainAccount = false;
FailOnNotExist = false;
}
}
}