8 lines
182 B
C#
8 lines
182 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record ReceiverDto(
|
|
int Id,
|
|
string EmailAddress,
|
|
string Signature,
|
|
DateTime AddedWhen);
|
|
} |