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:
parent
40135fb8a2
commit
2004c7ced2
@ -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;
|
||||
Loading…
x
Reference in New Issue
Block a user