17 lines
423 B
C#
17 lines
423 B
C#
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
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,
|
|
Envelope? Envelope,
|
|
Receiver? Receiver);
|
|
} |