refactor(RemoveSignatureNotification): create with handlers to remove signatures of a document

This commit is contained in:
2025-10-08 12:41:14 +02:00
parent 9adc1ea4e7
commit 3b7d0e1321
5 changed files with 85 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
using MediatR;
namespace EnvelopeGenerator.Application.Common.Notifications.RemoveSignature;
/// <summary>
///
/// </summary>
/// <param name="EnvelopeId"></param>
public record RemoveSignatureNotification(int EnvelopeId) : INotification;