7 lines
161 B
C#
7 lines
161 B
C#
namespace GmRelay.Shared.Features.Reminders.SendJoinLink;
|
|
|
|
public interface ISendJoinLinkHandler
|
|
{
|
|
Task HandleAsync(Guid sessionId, CancellationToken ct);
|
|
}
|