using QYZH.InteractiveMagazine.IService.Dto;
using QYZH.InteractiveMagazine.Models.Entity;
namespace QYZH.InteractiveMagazine.IService;
///
/// 微信小程序认证服务
///
public interface IWeChatAuthService : IBaseService
{
///
/// 微信小程序一键登录
///
/// 登录输入(含微信 code)
/// 登录结果(含 Token 和用户信息)
Task LoginAsync(WeChatLoginInput input);
}