mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 09:31:38 -04: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);
|
|
}
|