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