using JNPF.DependencyInjection;
namespace JNPF.Common.Dtos;
///
/// 企业号连接参数信息.
///
[SuppressSniffer]
public class WeChatParameterInfo
{
///
/// 应用凭证.
///
public string qyhAgentId { get; set; }
///
/// 凭证密钥.
///
public string qyhAgentSecret { get; set; }
///
/// 企业号Id.
///
public string qyhCorpId { get; set; }
///
/// 同步密钥.
///
public string qyhCorpSecret { get; set; }
}