Files
Govor/Govor.Core/Services/IAuthService.cs
T
2025-06-18 16:55:19 +07:00

9 lines
233 B
C#

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