mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-19 15:26:22 -05:00
8 lines
187 B
C#
8 lines
187 B
C#
namespace Cleanuparr.Infrastructure.Features.Auth;
|
|
|
|
public interface IPasswordService
|
|
{
|
|
string HashPassword(string password);
|
|
bool VerifyPassword(string password, string hash);
|
|
}
|