From 2004c7ced20a3eaf63da69f05362313b9f8211b0 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 21 Oct 2025 16:43:01 +0200 Subject: [PATCH] feat(RemoveSignatureNotification): extend RemoveSignatureNotification with EnvelopeId and ReceiverId Added optional parameters `EnvelopeId` and `ReceiverId` to RemoveSignatureNotification to provide additional context when removing receiver signatures. --- .../RemoveSignature/RemoveSignatureNotification.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Common/Notifications/RemoveSignature/RemoveSignatureNotification.cs b/EnvelopeGenerator.Application/Common/Notifications/RemoveSignature/RemoveSignatureNotification.cs index e7893024..529a6c4f 100644 --- a/EnvelopeGenerator.Application/Common/Notifications/RemoveSignature/RemoveSignatureNotification.cs +++ b/EnvelopeGenerator.Application/Common/Notifications/RemoveSignature/RemoveSignatureNotification.cs @@ -5,6 +5,13 @@ namespace EnvelopeGenerator.Application.Common.Notifications.RemoveSignature; /// /// /// +/// +/// /// /// -public record RemoveSignatureNotification(string EnvelopeUuid, string? ReceiverSignature) : INotification; \ No newline at end of file +public record RemoveSignatureNotification( + int? EnvelopeId = null, + int? ReceiverId = null, + string? EnvelopeUuid = null, + string? ReceiverSignature = null + ) : INotification; \ No newline at end of file