- Prioritätsbehandlung für document_path_dmz in EnvelopeService.LoadEnvelopes hinzugefügt. - CRUD-Operationen in EnvlopeDocument und ConfigurationFile Services/Repositories unter Verwendung von WebCoreModules implementiert. - Verschiedene Dateimethoden in [spezifischen Orten oder Klassen, falls zutreffend] auf async umgestellt.
12 lines
380 B
C#
12 lines
380 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeDocumentDto
|
|
{
|
|
public int Guid { get; init; }
|
|
public int EnvelopeId { get; init; }
|
|
public string Filename { get; init; }
|
|
public string Filepath { get; init; }
|
|
public DateTime AddedWhen { get; init; }
|
|
public string FilenameOriginal { get; init; }
|
|
}
|
|
} |