11 lines
310 B
C#
11 lines
310 B
C#
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiver
|
|
{
|
|
public record EnvelopeReceiverSecretDto() : EnvelopeReceiverDto()
|
|
{
|
|
public string? AccessCode { get; init; }
|
|
|
|
public string? PhoneNumber { get; init; }
|
|
|
|
public EnvelopeReceiverDto WithoutSecrets => this;
|
|
}
|
|
} |