21 lines
491 B
C#
21 lines
491 B
C#
using EnvelopeGenerator.Application.Dto.Receiver;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace EnvelopeGenerator.Application.Dto.EnvelopeReceiver;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public record EnvelopeReceiverSecretDto : EnvelopeReceiverDto<ReceiverSecretDto>
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string? AccessCode { get; init; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string? PhoneNumber { get; init; }
|
|
} |