Files
Govor/Govor.API/Services/Authentication/Interfaces/IInvitesService.cs
T
Artemy 76094af15b Invitation globale work
+ tests
+ new services
+ InvitationDto and IInvitationReqest
2025-06-24 21:20:43 +07:00

9 lines
214 B
C#

using Govor.Core.Models;
namespace Govor.API.Services.Authentication.Interfaces;
public interface IInvitesService
{
public Task<string> GetRole(User user);
public Invitation Validate(string inviteCode);
}