using System.Threading.Tasks;
namespace Hncore.Infrastructure.OpenApi
{
///
/// 接入的应用
///
public class Application
{
///
/// 应用唯一标识
///
public string AppId { get; set; } = "";
///
/// 应用密钥
///
public string AppKey { get; set; } = "";
///
/// 是否启用
///
public bool Enable { get; set; } = true;
}
}