9 lines
250 B
C#
9 lines
250 B
C#
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiver
|
|
{
|
|
public record EnvelopeReceiverSecretDto() : EnvelopeReceiverDto()
|
|
{
|
|
public string? AccessCode { get; init; }
|
|
|
|
public string? PhoneNumber { get; init; }
|
|
}
|
|
} |