23 lines
476 B
C#
23 lines
476 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Response.EnterpriseWechat
|
|||
|
{
|
|||
|
public class WechatSysParameter
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 企业微信KEY
|
|||
|
/// </summary>
|
|||
|
public string FAppid { get; set; }
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 企业微信FSecret
|
|||
|
/// </summary>
|
|||
|
public string FSecret { get; set; }
|
|||
|
}
|
|||
|
}
|