您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
478 B
18 行
478 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.CloudDB
|
|
{
|
|
public class EntireEncryptedData : IHmsBaseListener
|
|
{
|
|
public string name => "com.huawei.agconnect.cloud.database.annotations.EntireEncrypted";
|
|
public string buildName => "";
|
|
}
|
|
public class EntireEncrypted : HmsListener<EntireEncryptedData>
|
|
{
|
|
|
|
public virtual bool isEncrypted() {
|
|
return Call<bool>("isEncrypted");
|
|
}
|
|
}
|
|
}
|