23 lines
580 B
C#
23 lines
580 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record DocumentReceiverElementDto(
|
|
int Id,
|
|
int DocumentId,
|
|
int ReceiverId,
|
|
int ElementType,
|
|
double PositionX,
|
|
double PositionY,
|
|
double Width,
|
|
double Height,
|
|
int Page,
|
|
bool Required,
|
|
string? Tooltip,
|
|
bool ReadOnly,
|
|
int AnnotationIndex,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen,
|
|
EnvelopeDocumentDto? Document,
|
|
EnvelopeReceiverDto? Receiver,
|
|
double Top,
|
|
double Left);
|
|
} |