11 lines
253 B
C#
11 lines
253 B
C#
using API.DTO.Base;
|
|
using DAL.Models;
|
|
|
|
namespace API.Authentication.Interfaces
|
|
{
|
|
public interface IUserAuthentication : IGenericAuthentication<UserDTO, User>
|
|
{
|
|
bool canChangePassword(User destUser, User changingUser, bool oldPasswordMatchNew);
|
|
}
|
|
}
|