Files
Govor/Govor.API/Services/Authentication/Interfaces/IAuthService.cs
T
Artemy 76094af15b Invitation globale work
+ tests
+ new services
+ InvitationDto and IInvitationReqest
2025-06-24 21:20:43 +07:00

9 lines
281 B
C#

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