Added optional parameters `EnvelopeId` and `ReceiverId` to RemoveSignatureNotification to provide additional context when removing receiver signatures.
17 lines
484 B
C#
17 lines
484 B
C#
using MediatR;
|
|
|
|
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(
|
|
int? EnvelopeId = null,
|
|
int? ReceiverId = null,
|
|
string? EnvelopeUuid = null,
|
|
string? ReceiverSignature = null
|
|
) : INotification; |