feat(RemoveSignatureNotification): extend RemoveSignatureNotification with EnvelopeId and ReceiverId

Added optional parameters `EnvelopeId` and `ReceiverId` to RemoveSignatureNotification
to provide additional context when removing receiver signatures.
This commit is contained in:
tekh 2025-10-21 16:43:01 +02:00
parent 40135fb8a2
commit 2004c7ced2

View File

@ -5,6 +5,13 @@ namespace EnvelopeGenerator.Application.Common.Notifications.RemoveSignature;
/// <summary>
///
/// </summary>
/// <param name="EnvelopeId"></param>
/// <param name="ReceiverId"></param>
/// <param name="EnvelopeUuid"></param>
/// <param name="ReceiverSignature"></param>
public record RemoveSignatureNotification(string EnvelopeUuid, string? ReceiverSignature) : INotification;
public record RemoveSignatureNotification(
int? EnvelopeId = null,
int? ReceiverId = null,
string? EnvelopeUuid = null,
string? ReceiverSignature = null
) : INotification;