AuthSystem

This commit is contained in:
Artemy
2025-06-18 12:08:21 +07:00
parent de8d97e5bf
commit 2c2c2b805c
12 changed files with 230 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Govor.Core.Services;
public interface IAccountService
{
public Task RegistrationAsync(string name, string password);
public Task<string> LoginAsync(string name, string password);
}
+8
View File
@@ -0,0 +1,8 @@
using Govor.Core.Models;
namespace Govor.Core.Services;
public interface IGroupService
{
ChatGroup GetGroupByInvite(string code);
}