10 lines
228 B
C#
10 lines
228 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeDocumentDto
|
|
(
|
|
int Id,
|
|
int EnvelopeId,
|
|
DateTime AddedWhen,
|
|
IEnumerable<DocumentReceiverElementDto>? Elements
|
|
);
|
|
} |