Files
Govor/Govor.API/Services/Authentication/Interfaces/IAuthService.cs
T
Artemy ce013eae49 Registration rework
+ InvitesRepository
+ AdminsRepository
+ rework jwt
2025-06-24 14:27:08 +07:00

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);
}