mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
9 lines
230 B
C#
9 lines
230 B
C#
using Govor.Core.Models;
|
|
|
|
namespace Govor.API.Services.Authentication.Interfaces;
|
|
|
|
public interface IInvitesService
|
|
{
|
|
public Task<string> GetRoleAsync(User user);
|
|
public Task<Invitation> ValidateAsync(string inviteCode);
|
|
} |