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