7 lines
172 B
C#
7 lines
172 B
C#
namespace GmRelay.Shared.Features.Confirmation.SendConfirmation;
|
|
|
|
public interface ISendConfirmationHandler
|
|
{
|
|
Task HandleAsync(Guid sessionId, CancellationToken ct);
|
|
}
|