Login fejlesztése

This commit is contained in:
2025-03-12 11:57:16 +01:00
parent c9ffad0d91
commit 439d8cafd5
3 changed files with 73 additions and 1 deletions
@@ -1,6 +1,9 @@
namespace WorkFlowCheck.Web.Services.Interfaces
using WorkFlowCheck.Common.DTO;
namespace WorkFlowCheck.Web.Services.Interfaces
{
public interface IUserService
{
Task<ApiResponseDTO<UserDTO>> Authenticate(string username, string password);
}
}