15 lines
350 B
C#
15 lines
350 B
C#
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeDocumentDto
|
|
(
|
|
int Id,
|
|
int EnvelopeId,
|
|
string Filename,
|
|
string Filepath,
|
|
DateTime AddedWhen,
|
|
string FilenameOriginal,
|
|
ICollection<DocumentReceiverElement>? Elements
|
|
);
|
|
} |