11 lines
169 B
C#
11 lines
169 B
C#
|
using API.DTO.Base;
|
||
|
using API.DTO.Login;
|
||
|
|
||
|
namespace API.Services.Interfaces
|
||
|
{
|
||
|
public interface IUserManager
|
||
|
{
|
||
|
UserDTO? AuthenticateUser(UserLoginDTO loginDTO);
|
||
|
}
|
||
|
}
|