- Core-Bibliotheken und `UserManager.Infrastructure` in der Application-Schicht auf Version 2.0.0.0 erhöht. - DbSet-Eigenschaften aus dem DbContext injiziert.
24 lines
547 B
C#
24 lines
547 B
C#
using DigitalData.Core.Abstractions;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record DocumentReceiverElementDto(
|
|
int Id,
|
|
int DocumentId,
|
|
int ReceiverId,
|
|
int ElementType,
|
|
double X,
|
|
double Y,
|
|
double Width,
|
|
double Height,
|
|
int Page,
|
|
bool Required,
|
|
string? Tooltip,
|
|
bool ReadOnly,
|
|
int AnnotationIndex,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen,
|
|
double Top,
|
|
double Left
|
|
): IUnique<int>;
|
|
} |