22 lines
479 B
C#
22 lines
479 B
C#
using EnvelopeGenerator.Application.Dto.Receiver;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace EnvelopeGenerator.Application.Dto.EnvelopeReceiver;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public record EnvelopeReceiverDto() : EnvelopeReceiverBasicDto()
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public EnvelopeDto? Envelope { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public ReceiverDto? Receiver { get; set; }
|
|
} |