using API.DTO.Base; using DAL.Models; namespace API.Authentication.Interfaces { public interface IUserAuthentication : IGenericAuthentication { bool canChangePassword(User destUser, User changingUser, bool oldPasswordMatchNew); } }