using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZhonTai.Admin.Services.Auth.Dto; using ZhonTai.Admin.Services.DiTuiAPI.Dto; using ZhonTai.DynamicApi; namespace ZhonTai.Admin.Services.DiTuiAPI { public interface IDiTuiAPIService { Task LoginAsync(LoginInput input); Task RegisterAsync(RegisterInput input); } }