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.
12 lines
337 B
C#
12 lines
337 B
C#
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)
|
|
{
|
|
}
|