Files
Govor/Govor.Core/Services/IAuthService.cs
T
2025-06-18 12:08:21 +07:00

7 lines
199 B
C#

namespace Govor.Core.Services;
public interface IAccountService
{
public Task RegistrationAsync(string name, string password);
public Task<string> LoginAsync(string name, string password);
}