1234567891011121314151617 |
- using MTWorkHR.Application.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Identity
- {
- public interface IAuthService
- {
- Task<AuthResponse> Login(AuthRequest request);
- }
- }
|