mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
76094af15b
+ tests + new services + InvitationDto and IInvitationReqest
9 lines
281 B
C#
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);
|
|
} |