Implementierung von RemoveIfControllerConvention in der Startup-Klasse, um Controller, die mit "Test" beginnen, basierend auf einem Konfigurationsflag auszuschließen, was die Flexibilität der Dienstregistrierung erhöht.
22 lines
511 B
C#
22 lines
511 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,
|
|
double Top,
|
|
double Left
|
|
);
|
|
} |