using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ApiTools.Core
{
///
/// 保存微信配置
///
[Resource([EnumResourceController.CommonServerWxUtils], Method = EnumResourceMethod.Post)]
public class SaveWxSettingCommand : IRequest
{
///
/// 编号
///
public string Code { get; set; }
///
/// 小程序ID
///
public string AppId { get; set; }
///
/// 小程序密钥
///
public string AppSecret { get; set; }
///
/// 版本
///
public string EnvVersion { get; set; }
}
}