Added a new nullable ReceiverSignature property to the RemoveSignatureNotification record to support handling receiver-specific signature removal events.
10 lines
323 B
C#
10 lines
323 B
C#
using MediatR;
|
|
|
|
namespace EnvelopeGenerator.Application.Common.Notifications.RemoveSignature;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="EnvelopeUuid"></param>
|
|
/// <param name="ReceiverSignature"></param>
|
|
public record RemoveSignatureNotification(string EnvelopeUuid, string? ReceiverSignature) : INotification; |