feat(RemoveSignatureNotification): add ReceiverSignature to RemoveSignatureNotification

Added a new nullable ReceiverSignature property to the RemoveSignatureNotification record
to support handling receiver-specific signature removal events.
This commit is contained in:
2025-10-21 15:25:04 +02:00
parent d8ed06fdb6
commit 2c4c18935f
4 changed files with 12 additions and 6 deletions

View File

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