Add CreateEnvelopeReceiverResponse record

Introduces the `CreateEnvelopeReceiverResponse` record in the
`EnvelopeGenerator.Application.EnvelopeReceivers.Commands.Create`
namespace. This record inherits from `ReadEnvelopeReceiverQuery`
and includes an optional `Status` parameter of type
`EnvelopeStatusQuery`. Also adds necessary using directives.
This commit is contained in:
Developer 02 2025-05-06 09:56:35 +02:00
parent 7b7a4b4f65
commit 40dc0ecda3

View File

@ -0,0 +1,11 @@
using EnvelopeGenerator.Application.EnvelopeReceivers.Queries.Read;
namespace EnvelopeGenerator.Application.EnvelopeReceivers.Commands.Create;
/// <summary>
///
/// </summary>
/// <param name="Status"></param>
public record CreateEnvelopeReceiverResponse(EnvelopeStatusQuery? Status = null) : ReadEnvelopeReceiverQuery(Status)
{
}