Files
Govor/Govor.Application/Interfaces/Authentication/IInvitesService.cs
T
2025-07-11 21:52:37 +07:00

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