Files
Govor/Govor.Application/Interfaces/Authentication/IInvitesService.cs
T
2025-07-01 13:25:55 +07:00

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