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); }