11 lines
253 B
C#
Raw Normal View History

2024-07-15 13:23:58 -05:00
using API.DTO.Base;
using DAL.Models;
namespace API.Authentication.Interfaces
{
public interface IUserAuthentication : IGenericAuthentication<UserDTO, User>
{
2024-12-19 19:33:45 -06:00
bool canChangePassword(User destUser, User changingUser, bool oldPasswordMatchNew);
2024-07-15 13:23:58 -05:00
}
}