using MediatR;
namespace EnvelopeGenerator.Application.Common.Notifications.Handlers;
///
///
///
public class DocSignedNotificationStatusHandler : INotificationHandler
{
///
///
///
///
///
///
///
public Task Handle(DocSignedNotification notification, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}