mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-22 20:24:55 +00:00
7831e4838a
+ addition LocalStorageService + tests
9 lines
258 B
C#
9 lines
258 B
C#
using Govor.Core.Models;
|
|
|
|
namespace Govor.API.Services.Authentication.Interfaces;
|
|
|
|
public interface IAccountService
|
|
{
|
|
public Task<string> RegistrationAsync(string name, string password);
|
|
public Task<string> LoginAsync(string name, string password);
|
|
} |