mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
ce013eae49
+ InvitesRepository + AdminsRepository + rework jwt
9 lines
277 B
C#
9 lines
277 B
C#
using Govor.Core.Models;
|
|
|
|
namespace Govor.API.Services.Authentication.Interfaces;
|
|
|
|
public interface IAccountService
|
|
{
|
|
public Task<string> RegistrationAsync(string name, string password, string inviteCode);
|
|
public Task<string> LoginAsync(string name, string password);
|
|
} |