17 lines
449 B
C#
17 lines
449 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeReceiverDto(
|
|
int EnvelopeId,
|
|
int ReceiverId,
|
|
int Sequence,
|
|
string? Name,
|
|
string? JobTitle,
|
|
string? CompanyName,
|
|
string? PrivateMessage,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen,
|
|
string? RejectionReason,
|
|
bool IsRejected,
|
|
EnvelopeDto? Envelope,
|
|
ReceiverDto? Receiver);
|
|
} |