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:
parent
7b7a4b4f65
commit
40dc0ecda3
@ -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)
|
||||||
|
{
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user