using Govor.Core.Models; using Govor.Core.Models.Users; namespace Govor.Application.Interfaces.Authentication; public interface IInvitesService { public Task GetRoleAsync(User user); public Task ValidateAsync(string inviteCode); }